Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

take off element form end of array

const colors = ["Blue", "Green", "Red", "Yellow"];
colors.pop();

console.log(colors); // ["Blue", "Green", "Red"]
 
PREVIOUS NEXT
Tagged: #element #form #array
ADD COMMENT
Topic
Name
3+7 =