-
Notifications
You must be signed in to change notification settings - Fork 0
/
Коллекция.js
52 lines (44 loc) · 1.05 KB
/
Коллекция.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
module.exports = Collection;
/**
* Конструктор коллекции
* @constructor
*/
function Collection() {
this.arr = [];
}
// Методы коллекции
Collection.prototype.values = function () {
return this.arr;
};
// другие методы
Collection.prototype.count = function () {
return this.arr.length;
};
Collection.prototype.at = function (idx) {
if (this.arr.includes(this.arr[idx - 1])) {
return this.arr[idx - 1];
}
};
Collection.prototype.append = function (elem) {
if (Array.isArray(elem) || typeof elem === 'number' || typeof elem === 'string' || typeof elem === 'boolean') {
this.arr = this.arr.concat(elem);
} else {
this.arr = this.arr.concat(elem.arr);
}
};
Collection.prototype.removeAt = function (idx) {
if (this.arr.includes(this.arr[idx - 1])) {
this.arr.splice(idx - 1, 1);
return true;
} else {
return false;
}
};
/**
* Создание коллекции из массива значений
*/
Collection.from = function (array) {
var obj = new Collection();
obj.arr = array;
return obj;
};