-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.js
183 lines (150 loc) · 2.58 KB
/
index.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/**
* Type des données primitifs
*
* Boolean -> résultats assertion logique -> true pour vraie logique , false pour faux logique
* Null -> Valeur null
* Undefined -> non défini
* number -> nombre
* string -> chaine de caractere
*
* Type objet
*/
/**
* New array
*/
var test = new Array(1,2,4)
/**
* Create array from params{any}
*/
Array.from(params)
/**
* Create array from args{any}
*/
Array.of(1,"1");
/**
* Operate right to left
*/
test.reduce(( item, value ) => item + value, 1)
/**
* Check if item is operate by function params
* Bool
*/
test.some( item => item < 6)
/**
* Check if all element is passed by test
* Bool
*/
test.every( item => item < 5)
/**
* Find element in array
* Bool
*/
test.includes(2)
/**
* Concat array with other value
*/
test.concat(new Array(6,8))
/**
* Filtre
*/
test.filter( item => item < 8 )
/**
* Sort descending
*/
test.sort((a , b ) =>a < b ? 1 : -1 )
/**
* Sort ascending
*/
test.sort(( a , b )=> a < b ? -1 : 1 )
var sum = 0;
/**
* Sum of array
*/
for (var i=0;i<test.length;i++){
sum += test[i];
}
// OR
var sumArray = test.reduce( (a, b) => { return a + b })
/**
* Min value of array
*/
var minValue = test.reduce( (a, b) => { return a < b ? a : b })
/**
* Max value of array
*/
var maxValue = test.reduce( (a, b) => { return a > b ? a : b })
/**
* Push element to array
*/
test.push()
/**
* Remove element in middle of array
*/
test.splice(0,2)
/**
* Couper un array
*/
test.slice(0,3)
/**
* Add element in middle of array
*/
test.splice(1,2,"Hihi")
// Difference betwen this splice is the third parameters means add value
/**
* add element at first
*/
test.unshift("a")
/**
* Remove first element
*/
test.shift()
/**
* remove last element
*/
test.pop()
/**
* Append all element
*/
test.toString()
/**
* Join array with string
*/
test.join('-')
/**
* Itterate the array then add the provide function in all item
*/
test.map(item => item + 1)
/**
* Foreach item from array
*/
test.forEach(function(item,index){
console.log(item,index);
})
/** ------------------------------
* Localstorage manipulation
* -------------------------------
*/
/**
* Add item to LocalStorage
*/
localStorage.setItem("mickie","jul");
/**
* Set localstorage array element
*/
localStorage.setItem("array",JSON.stringify(test));
/**
* Get localstorage array
*/
JSON.parse(localStorage.getItem("array"))
/**
* Get item from localStorage
*/
localStorage.getItem("mickie");
/**
* Remove item from localstorage
*/
localStorage.removeItem("mickie");
/**
* clear all LocalStorage
*/
localStorage.clear();