Which method removes the last element from the end of an array code example
Example: javascript remove last element from array
var colors = ["red","blue","green"];
colors.pop();
var colors = ["red","blue","green"];
colors.pop();