fe-interview
fe-interview copied to clipboard
'1'.toString()为什么可以调用?
语句在执行的时候,经历了三个过程:
var str = new String('1');
str.toString();
str = null;
看到了另一种解释,哪个才是对的呀?https://juejin.cn/post/6844903974378668039