其他分享
首页 > 其他分享> > Array

Array

作者:互联网

let students = [];  //empty array

let colors = ['red', 'orange', 'yellow']; // strings

let lottoNums = [19,22,34];  //numbers

let stuff = [true, 68, 'cat', null];   //mixed array
let colors = ['red', 'blue', 'green'];

color[0] = 'red';

color[3] = 'blue';

标签:const,arrays,Eggs,let,Array,array,red
来源: https://www.cnblogs.com/LilyLiya/p/14249739.html