js 获取数组大小方法

<script>
var arr = ['a', 'b', 'c'];
console.log('arrLength->', arr.length);
</script>