Files
2018-10-16 21:32:40 +05:30

297 B
Raw Blame History

title, localeTitle
title localeTitle
Manipulate Arrays With push() 用push操纵数组

用push操纵数组

push()方法允许您将元素追加(添加到末尾)到数组。像这样......

var arr = [1, 2, 3, 4]; 
 arr.push(5); // Now, the array is [1, 2, 3, 4, 5]