描述

删除数组的最后一个元素并返回该数组。

var arr = new Array ("Hello", "World");
arr.Pop();

// Prints only "Hello" print (arr);

注意:此功能仅适用于 javascript。C# 不使用此功能。