-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab5.js
81 lines (60 loc) · 1.68 KB
/
lab5.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// реалізація штуки для послідовного виконання функцій
function seq(...stuff)
{
let funcs = [...stuff];
let runner = function(input)
{
// перевірка, переданий аргумент ф-я чи значення
if (typeof input === 'function')
{
funcs.push(input);
return runner;
}
else
{
let result = input;
for(let fn of funcs)
{
result = fn(result); // застосовуємо кожну функцію по черзі
}
return result;
}
};
return runner;
}
// перевірка чи все працює
console.log(seq(x => x + 7)(x => x * 2)(5));
console.log(seq(x => x * 2)(x => x + 7)(5));
console.log(seq(x => x + 1)(x => x * 2)(x => x / 3)(x => x - 4)(7));
function array()
{
let items = [];
let wrapper = function(idx)
{
// просто ретурн всього що там є по індексу
return items[idx];
};
wrapper.push = function(stuff)
{
items.push(stuff);
};
wrapper.pop = function()
{
// видалення і повернення останннього елементу
if (items.length === 0) return undefined;
return items.pop();
};
return wrapper;
}
let myArr = array();
myArr.push('first');
myArr.push('second');
myArr.push('third');
console.log(myArr(0));
console.log(myArr(1));
console.log(myArr(2));
// тест видалення
console.log(myArr.pop());
console.log(myArr.pop());
console.log(myArr.pop());
console.log(myArr.pop());