Add items to an array. Pass the new items in as arguments. var sandwiches = ['turkey', 'tuna', 'blt']; sandwiches.push('chicken', 'pb&j'); // logs ['turkey' ...
確定! 回上一頁