-
Notifications
You must be signed in to change notification settings - Fork 0
/
04_function.js
71 lines (54 loc) · 1.46 KB
/
04_function.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
// 1 Функции
// //function declaration - можно переносить до и после вызывания
function greed(name) {
console.log("Hello", name)
}
greed("Lena")
//function expression - только вначале
const greed2 = function(name){
console.log("Hello", name)
// greet('Лена')
// console.log(typeof greet)
// console.dir(greet)
// 2 Анонимные функции
// let counter = 0
// const interval = setInterval(function() {
// if (counter === 5) {
// clearInterval(interval) // clearTimeout
// } else {
// console.log(++counter)
// }
// }, 1000)
// 3 Стрелочные функции
function greet() {
console.log('Привет - ')
}
const arrow = (name, age) => {
console.log('Привет - ', name, age)
}
const arrow2 = name => console.log('Привет - ', name)
// arrow2('Vladilen')
const pow2 = num => num ** 2
// console.log(pow2(5))
// 4 Параметры по умолчанию
const sum = (a = 40, b = a * 2) => a + b
// console.log(sum(41, 4))
// console.log(sum())
function sumAll(...all) {
let result = 0
for (let num of all) {
result += num
}
return result
}
const res = sumAll(1, 2, 3, 4, 5)
// console.log(res)
// 5 Замыкания
function createMember(name) {
return function(lastName) {
console.log(name + lastName)
}
}
const logWithLastName = createMember('Vladilen')
console.log(logWithLastName('Minin'))
console.log(logWithLastName('Kuznezov'))