数组和集合 / 数组

let numbers = [ 123 ];
let len = numbers.length;
//len is 3 

console.log(`len is ${len}`);