Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

javascript remove first element from array

// remove the first element with shift
let flowers = ["Rose", "Lily", "Tulip", "Orchid"];

// assigning shift to a variable is not needed if
// you don't need the first element any longer
let removedFlowers = flowers.shift();

console.log(flowers); // ["Lily", "Tulip", "Orchid"]
console.log(removedFlowers); // "Rose"
Source by sebhastian.com #
 
PREVIOUS NEXT
Tagged: #javascript #remove #element #array
ADD COMMENT
Topic
Name
2+3 =