Array length
2022年5月1日小于 1 分钟
Array length
Question
What does the code snippet to the right output by console.log
?
Snippet
class MyArray extends Array {
get length() {
return 3
}
}
const arr1 = new MyArray(10)
console.log(arr1.length)
const arr2 = new Array(10)
console.log(arr2.length)