javascript array method samples code example
Example 1: remove from array javascript
let numbers = [1,2,3,4]
// to remove last element
let last_num = numbers.pop();
// numbers will now be [1,2,3]
// to remove first element
let first_num = numbers.shift();
//numbers will now be [2,3]
// to remove at an index
let number_index = 1
let index_num = numbers.splice(number_index,1); //removes 1 element at index 1
//numbers will now be [2]
//these methods will modify the numbers array and return the removed element
Example 2: js array
var colors = [ "red", "orange", "yellow", "green", "blue" ]; //Array
console.log(colors); //Should give the whole array
console.log(colors[0]); //should say "red"
console.log(colors[1]); //should say "orange"
console.log(colors[4]); //should say "blue"
colors[4] = "dark blue" //changes "blue" value to "dark blue"
console.log(colors[4]); //should say "dark blue"
//I hope this helped :)