這篇文章主要介紹js怎樣判斷對(duì)象的數(shù)據(jù)類型,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)專業(yè)為企業(yè)提供臨城網(wǎng)站建設(shè)、臨城做網(wǎng)站、臨城網(wǎng)站設(shè)計(jì)、臨城網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、臨城企業(yè)網(wǎng)站模板建站服務(wù),十多年臨城做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價(jià)值的思路和整體網(wǎng)絡(luò)服務(wù)。
判斷對(duì)象的數(shù)據(jù)類型
使用Object.prototype.toString配合閉包來實(shí)現(xiàn)對(duì)象數(shù)據(jù)類型的判斷:
const isType = type => target => `[object ${type}]` === Object.prototype.toString.call(target) const isArray = isType('Array')([1, 2, 3]) console.log(isArray) > Result: true
上面的代碼相當(dāng)于:
function isType(type){ return function (target) { return `[object ${type}]` === Object.prototype.toString.call(target) } } isType('Array')([1,2,3]) > Result: true
或者:
const isType = type => target => `[object ${type}]` === Object.prototype.toString.call(target) const isString = isType('String') const res = isString(('1')) console.log(res) > Result: true
以上是“js怎樣判斷對(duì)象的數(shù)據(jù)類型”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!