标签:ice [] 使用 bsp rom prot call nbsp from
1.使用Array.prototype.slice.call();
Array.prototype.slice.call({
0:"yeluosen",
1:12,
2:true,
length:3
});
//["yeluosen", 12, true]
2.使用[].slice.call()
[].slice.call({
0:"yeluosen",
1:12,
2:true,
length:3
});
//["yeluosen", 12, true]
3.使用ES6中Array.from方法
Array.from({
0:"叶落森",
1:18,
2:2014,
3:"北京邮电大学",
length:4
});
//["叶落森", 18, 2014, "北京邮电大学"]
标签:ice [] 使用 bsp rom prot call nbsp from
原文地址:https://www.cnblogs.com/webjl/p/10325063.html