DN
при чем тут Set - тоже не понял. Set - это массив уникальных значений, а в коде у вас простой массив
Size: a a a
DN
DN
ЕJ
(function() {
/*
* https://stackoverflow.com/questions/1997661/unique-object-identifier-in-javascript
* */
if ( typeof Object.id == "undefined" ) {
var id = 0;
Object.id = function(o) {
if ( typeof o.__uniqueid == "undefined" ) {
Object.defineProperty(o, "__uniqueid", {
value: ++id,
enumerable: false,
// This could go either way, depending on your
// interpretation of what an "id" is
writable: false
});
}
return o.__uniqueid;
};
}
})();IK
(function() {
/*
* https://stackoverflow.com/questions/1997661/unique-object-identifier-in-javascript
* */
if ( typeof Object.id == "undefined" ) {
var id = 0;
Object.id = function(o) {
if ( typeof o.__uniqueid == "undefined" ) {
Object.defineProperty(o, "__uniqueid", {
value: ++id,
enumerable: false,
// This could go either way, depending on your
// interpretation of what an "id" is
writable: false
});
}
return o.__uniqueid;
};
}
})();IK
IK
DN
IK
ЕJ
IK
IK
ЕJ
ЕJ
AP
AP
AP
IK
IK
AP