-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathexercise.js
92 lines (84 loc) · 1.63 KB
/
exercise.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
let fruits = ['Strawberry', 'Mango']
const log = console.log
let sliceFruits = fruits.slice(0, 1) // to do shallowCopy
console.log(sliceFruits, fruits)
let spliceFruits = fruits.splice(0, 1) // to remove item in an array
console.log(spliceFruits, fruits)
// use reduce to find the count of repeated names in an array
let names = ['Alice', 'Bob', 'Tiff', 'Bruce', 'Alice']
log(
names.reduce(function (allNames, name) {
if (name in allNames) {
allNames[name]++
} else {
allNames[name] = 1
}
return allNames
}, {})
)
// Group by key
let people = [
{ name: 'Alice', age: 21 },
{ name: 'Max', age: 20 },
{ name: 'Jane', age: 20 },
]
let groupByKey = 'age'
log(
people.reduce(function (acc, obj) {
let key = obj[groupByKey]
if (!acc[key]) {
acc[key] = []
}
acc[key].push(obj)
return acc
}, {})
)
/**
* Sorting
*/
let royalFamily = [
{
name: 'rama',
age: '45',
},
{
name: 'krishna',
age: '80',
},
{
name: 'bishma',
age: '145',
},
{
name: 'arujuna',
age: '65',
},
]
console.log(
'royalFamily by name',
royalFamily.sort((a, b) => {
a = a.name.toUpperCase()
b = b.name.toUpperCase()
if (a < b) {
return -1
} else if (a > b) {
return 1
}
return 0
//return a.name - b.name
})
)
let plainArray = ['rama', 'Krishna', 'arjuna', 'bhisma', 10, 5, 8]
console.log(
'plainArray',
plainArray.sort((a, b) => {
if (typeof a === 'string') a = a.toUpperCase()
if (typeof b === 'string') b = b.toUpperCase()
if (a < b) {
return -1
} else if (a > b) {
return 1
}
return 0
})
)