语法
字符串
字符串和数组类似,可以通过call间接调用数组的一些方法
vars='hello';s.join(' ')
// TypeError: s.join is not a function
Array.prototype.join.call(s,' ')
// "h e l l o"
字符串和数组类似,可以通过call间接调用数组的一些方法
vars='hello';s.join(' ')
// TypeError: s.join is not a function
Array.prototype.join.call(s,' ')
// "h e l l o"
本文标题:js标准参考教程
本文链接:https://www.haomeiwen.com/subject/ekrpbttx.html
网友评论