const d = new Date('2021-11-03T23:24:00.000Z');
d.setMinutes(d.getMinutes() + 1349);
<path fill="red" d="M213.333,332.458V179.542L332.271,256L213.333,332.458z"/>
[...new Set(data.variations.map(n => n.color.name))]
Object.values(Object.fromEntries(data.variations.map(n => [ n.color.name, n.color ])))
// или
Object.values(data.variations.reduce((acc, { color: n }) => (acc[n.name] ??= n, acc), {}))
// или
data.variations.map(n => n.color).filter(function(n) {
return !(this[n.name] = this.hasOwnProperty(n.name));
}, {})
const unique = (data, key = n => n) =>
Array.prototype.filter.call(data, function(n) {
const k = key(n);
return !this.has(k) && this.add(k);
}, new Set);
// получаем массив уникальных имён цветов
const uniqueStrColors = unique(data.variations.map(n => n.color.name));
// получаем массив объектов цветов, свойства name которых уникальны
const uniqueObjColors = unique(data.variations.map(n => n.color), n => n.name);
<div class="main-container">
<img class="main-container__picture" src="images/bg.png" alt="Background">
<!-- main-container__block-1 block-1 - Это микс, блок который модифицируется элементом другого блока или другим блоком -->
<div class="main-container__block-1 block-1">
<div class="block-1__content">
<div class="block-1__text">
<p>Your Title Goes Here Make It Long & Maybe 3 Lines</p>
</div>
<div class="block-1__buttons">
<!-- block-1__btn btn - Это тоже микс -->
<div class="block-1__btn btn"><a class="btn__link" href="#">explore</a></div>
<div class="block-1__btn btn"><a class="btn__link" href="#">Add to cart</a></div>
</div>
</div>
</div>
</div>
function Rabbit() {}
console.log(Object.getOwnPropertyDescriptor(Rabbit, 'prototype')); // { value: {}, writable: true, enumerable: false, configurable: false }
class Rabbit {}
console.log(Object.getOwnPropertyDescriptor(Rabbit, 'prototype')); // { value: {}, writable: false, enumerable: false, configurable: false }
'use strict';
Rabbit.prototype = {};
TypeError: Cannot assign to read only property 'prototype' of function 'class Rabbit {}'
Какие команды нужно прописать , что бы полностью отвязать git от папки в которой лежит проект?
rm ./.git -rf
Просто пытаюсь запушить , половину файлов отправляет половину не видит как-будто