pop()

 pop()


var list = ["tiger","bird","cat","bear"];

list;

['tiger', 'bird', 'cat', 'bear']

list.pop();

'bear';

//Again type list and see your "bear" data not here the list

list

Comments