javascript试题-下面js代码输出什么?

var START = 2 ** 53;
var END = START + 100;
for (var i = START; i < END; i++){
    console.log('loop');
}


网友评论0