美文网首页让前端飞
JavaScript--tostring方法

JavaScript--tostring方法

作者: 阿毛啊726 | 来源:发表于2020-06-10 19:11 被阅读0次

数组中的 tostring 方法
数组中的tostring被重写了,将数组转化成字符串
Object.prototype.tostring的方法
Object中的tostring方法可以精准判断数据类型

Object.prototype.tostring.call(obj)方法是用来判断精准数据类型的
console.log(Object.prototype.toString.call([1,2,3]));//[object Array]
console.log(Object.prototype.toString.call(21));//[object number]
console.log(Object.prototype.toString.call("string"));//[object string]
console.log(Object.prototype.toString.call(function () { }));//[object Function]
console.log(Object.prototype.toString.call(undefined));//[object        Undefined]
console.log(Object.prototype.toString.call(null));//[object null]
console.log(Object.prototype.toString.call({"name":"zzr"}));//[object object]

相关文章

网友评论

    本文标题:JavaScript--tostring方法

    本文链接:https://www.haomeiwen.com/subject/zlaptktx.html