javascript - A piece of code in the array primitive method
ringa_lee2017-05-16 13:25:11
0
2
480
var t = Object([1,2,3]); var len = t.length >>> 0; What does this code mean? Why does an array need to be converted into an object? Does this mean it is converted into a class array?
There should be more code, shouldn’t it be just these two sentences?