陣列length屬性的一些特性

2022-09-05 19:21:12 字數 421 閱讀 6104

~~·陣列的length屬性是可讀寫的

var colors = ["blue","red","green"];

colors.length = 2;

alert(colors[2]);//undefined 

移除colors.length = 8;

alert(colors[6]);//undefined 

新增colors[99] = "black";

alert(colors.length);//100

小結:陣列的length屬性不是唯讀的。將length的值設定小於當前長度,會刪除後面的項;設定大於當前長度,會新增項,新增項的值預設為undefined。

當把乙個值放在超出陣列大小的位置時,陣列就會重新計算其長度值,即長度值等於最後一項的索引加1.

陣列length屬性的一些特性

陣列的length屬性是可讀寫的 var colors blue red green colors.length 2 alert colors 2 undefined 移除 colors.length 8 alert colors 6 undefined 新增 colors 99 black ale...

陣列的索引與length屬性

陣列的索引與length屬性 1.陣列的索引 也叫做下標,是指資料在陣列裡面排列位置 陣列的索引是從0開始的 var arr he tom 12 ture console.log arr 0 he2.陣列的length屬性 代表陣列的長度,可以獲取和設定陣列的長度 var arr 1 2,3 arr...

python 的一些特性

class student object say this is a student class def init self,name,age 構造器 self.name name self.age age classmethod 類方法 def showclassmethod cls print ...