JS Basic Tutorial
JS Basic Dom
JS Reference
Method |
Description |
Example |
|---|---|---|
|
Returns the number of elements in the array |
let arr = [5,2]; arr.length // 2 |
|
|
Adds an element to the end |
let arr = [5,2]; arr.push(3) // [5,2,3] |
|
|
Adds an element to the start |
let arr = [5,2,3]; arr.unshift(0) // [0,5,2,3] |
|
|
Removes the first element |
let arr = [5,2,3]; arr.shift() // [2,3] |
|
|
Removes the last element |
let arr = [5,2,3]; arr.pop() // [5,2] |
|
|
Finds index of an element |
let arr = [5,2,3]; arr.indexOf(2) // 1 |
|
|
Checks if an element exists |
let arr = [5,2,3]; arr.includes(2) // true |
Returns the length of the array
push() → Add to the end.unshift() → Add to the beginning.Try it yourself
pop() → Remove from the end.shift() → Remove from the beginning.Try it yourself
indexof() → Find the index of a value.includes() → Check if a value exists.Try it yourself