forked from MedTech-CS311/HOF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
97 lines (89 loc) · 1.69 KB
/
main.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
// Higher order functions
// function add(a, b) {
// return a + b;
// }
// function operation(f, x, y) {
// return f(x, y);
// }
// console.log(
// operation(
// function (a, b) {
// return a / b;
// },
// 2,
// 3
// )
// );
// function map(f, arr) {
// for (let index = 0; index < arr.length; index++) {
// arr[index] = f(arr[index]);
// }
// return arr;
// }
// function multiplyBy2(x) {
// return x * 2;
// }
// console.log(map(multiplyBy2, [1, 2, 3, 4, 5]));
// function filter(arr, f) {
// var array = [];
// for (let i = 0; i < arr.length; i++) {
// if (f(arr[i])) {
// array.push(arr[i]);
// }
// }
// return array;
// }
// console.log(
// filter(["hello", "world", "how", "are"], function (element) {
// return element.length > 3;
// })
// );
// function reduce(arr, f, acc) {
// for (let i = 0; i < arr.length; i++) {
// acc = f(arr[i], acc);
// }
// return acc;
// }
// console.log(
// reduce(
// [1, 2],
// function (a, b) {
// return a + b;
// },
// 0
// )
// );
// console.log(
// reduce(
// [1, 2],
// function (a, b) {
// return a * b;
// },
// 1
// )
// );
// function filter(context, f, init) {
// for (let key in context) {
// if(Array.isArray(context) && f(context[key])){
// init.push(context[key])
// }else if(f(context[key])){
// init[key] = context[key]
// }
// }
// return init;
// }
// setInterval(function () {
// console.log("hello")
// }, 2000);
// setTimeout(function() {
// console.log('hello later');
// }, 3000);
var obj = {
value: 10,
output: function () {
setTimeout(() => {
console.log(this.value);
}, 3000)
}
}
obj.output();