-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab8.js
74 lines (61 loc) · 1.87 KB
/
lab8.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
// реалізація iterate
function iterate(object, callback)
{
for (const [key, value] of Object.entries(object))
{
callback(key, value, object);
}
}
// використання iterate
const obj = { a: 2, b: 4, c: 6 };
console.log("Результат для iterate:");
iterate(obj, (key, value) => {
console.log({ key, value });
});
// функція store
function store(value)
{
return function()
{
return value;
};
}
// використання store
const read = store(5);
console.log("\nРезультат для store:");
const value = read();
console.log(value);
// функція contract
function contract(fn, ...types)
{
return function(...args)
{
// перевірка типів параметрів
for (let i = 0; i < args.length; i++)
{
if (typeof args[i] !== types[i])
{
throw new TypeError(`Параметр ${i + 1} має бути типу: ${types[i]}`);
}
}
// виклик функції та перевірка типу результату
const result = fn(...args);
if (typeof result !== types[types.length - 1])
{
throw new TypeError(`Результат має бути типу: ${types[types.length - 1]}`);
}
return result;
};
}
// використання contract з add
const add = (a, b) => a + b;
const add_nums = contract(add, 'number', 'number', 'number');
console.log("\nOutput for add_nums:");
const res1 = add_nums(2, 3);
console.dir(res1);
// використання contract з concat
const concat = (s1, s2) => s1 + s2;
const concat_strings = contract(concat, 'string', 'string', 'string');
console.log("\nOutput for concat_strings:");
const res2 = concat_strings('Not a', ' programmer');
console.dir(res2);