日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

数据类型的检测方式

發布時間:2023/12/8 编程问答 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 数据类型的检测方式 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

1. typeof:除了會把數組,null判斷為object,其它判斷都正確

console.log(typeof 2); // number console.log(typeof true); // boolean console.log(typeof 'str'); // string console.log(typeof function(){}); // function console.log(typeof {}); // object console.log(typeof []); // object console.log(typeof null); // object console.log(typeof undefined); //undefined

2. instanceof:只能判斷引用數據類型,不能判斷基本數據類型。運行機制是判斷在其原型鏈中能否找到該類型的原型,所以還是會將數組判定成Object類型。

console.log(2 instanceof Number); // falseconsole.log(true instanceof Boolean); // falseconsole.log('str' instanceof String); // falseconsole.log([] instanceof Array); // trueconsole.log([] instanceof Object); // trueconsole.log(null instanceof Object); // falseconsole.log(function(){} instanceof Function); // trueconsole.log({} instanceof Object); //true

3. constructor: 有兩個作用,一是判斷數據的類型,二十對象實例通過constrcutor對象訪問它的構造函數。需要注意,如果創建一個對象來改變它的原型,constructor 就不能來判斷數據類型了

console.log((2).constructor === Number); // trueconsole.log((true).constructor === Boolean); // trueconsole.log(('str').constructor === String); // trueconsole.log(([]).constructor === Array); // trueconsole.log(([]).constructor === Object); // falseconsole.log((function (){}).constructor === Function); // trueconsole.log(({}).constructor === Object); //truefunction Fn(){};Fn.prototype = new Array();var f = new Fn();console.log(f.constructor===Fn); // falseconsole.log(f.constructor===Array); // true

4. Object.prototype.toString.call() 使用Object對象的原型的toString來判斷數據類型。

var a = Object.prototype.toStringconsole.log(a.call(2)); // [object Number]console.log(a.call(true)); // [object Boolean]console.log(a.call('str')); // [object String]console.log(a.call([])); // [object Array]console.log(a.call(function(){})); // [object Function]console.log(a.call({})); // [object Object]console.log(a.call(undefined)); // [object Undefined]console.log(a.call(null)); //[object Null]

總結

以上是生活随笔為你收集整理的数据类型的检测方式的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。