您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)JavaScript中typeof和instanceof操作符的示例分析的內(nèi)容。小編覺得挺實用的,因此分享給大家做個參考。一起跟隨小編過來看看吧。
智米們肯定知道,JS 是種弱類型語言,對變量的類型沒有限制。
例如,如果我們使用字符串類型創(chuàng)建了一個變量,后面又可以為同一變量分配一個數(shù)字:
let message = 'Hello'; // 分配一個字符串 message = 14; // 分配一個數(shù)字
這種動態(tài)性為我們提供了靈活性并簡化了變量聲明。
不好方面,我們永遠(yuǎn)不能確保變量包含某種類型的值。 例如,以下函數(shù)greet(who)
需要一個字符串參數(shù),但是,我們可以使用任何類型的參數(shù)來調(diào)用該函數(shù):
function greet(who) { return `Hello, ${who}!` } greet('World'); // => 'Hello, World!' // You can use any type as argument greet(true); // => 'Hello, true!' greet([1]); // => 'Hello, 1!'
有時我們需要在 JS 中檢查變量的類型,要怎么做?
使用typeof
運算符以及instanceof
來檢查實例類型。
1.typeof
運算符
在 JS 中,基本類型有 String
、Number
、Boolean
和 Symbol
等。此外,還有函數(shù)、對象和特殊值undefined
和null
。
typeof
是用于確定 expression
類型的運算符:
const typeAsString = typeof expression;
expression
的計算結(jié)果是我們要查找的類型的值。 expression
可以是變量myVariable
,屬性訪問器myObject.myProp
,函數(shù)調(diào)用myFunction()
或數(shù)字 14
。
typeof expression
,取決于expression
的值,結(jié)果可能為:'string'
, 'number'
, 'boolean'
, 'symbol'
, 'undefined'
, 'object'
, 'function'
。
我們來看看typeof
運算符每種類型的情況:
A) String:
const message = 'hello!'; typeof message; // => 'string'
B) Number:
const number = 5; typeof number; // => 'number' typeof NaN; // => 'number'
C) Boolean:
const ok = true; typeof ok; // => 'boolean'
D) Symbol:
const symbol = Symbol('key'); typeof symbol; // => 'symbol'
E) undefined:
const nothing = undefined; typeof nothing; // => 'undefined'
F) Objects:
const object = { name: 'Batman' }; typeof object; // => 'object' const array = [1, 4, 5]; typeof array; // => 'object' const regExp = /Hi/; typeof regExp; // => 'object'
G) Functions:
function greet(who) { return `Hello, ${who}!` } typeof greet; // => 'function'
1.1 typeof null
如上我們看到的,用 typeof
判斷對象結(jié)果是 'object'
。
但是,typeof null
也會計算為'object'
!
const missingObject = null; typeof missingObject; // => 'object'
typeof null
為'object'
是 JS 初始實現(xiàn)中的一個錯誤。
因此,在使用typeof
檢測對象時,需要另外檢查null
:
function isObject(object) { return typeof object === 'object' && object !== null; } isObject({ name: 'Batman' }); // => true isObject(15); // => false isObject(null); // => false
1.2 typeof 和未定義的變量
雖然typeof expression
通常決定于expression
的類型,但也可以使用typeof
來確定是否定義了變量。
// notDefinedVar is not defined notDefinedVar; // throws ReferenceError
typeof
有一個不錯的屬性,當(dāng)typeof
評估未定義變量的類型時,不會引發(fā) ReferenceError
錯誤:
// notDefinedVar is not defined typeof notDefinedVar; // => 'undefined'
變量notDefinedVar
沒有在當(dāng)前作用域內(nèi)定義。然而,typeof notDefinedVar
不會拋出引用錯誤,而是將結(jié)果計算為 'undefined'
。
我們可以使用typeof
來檢測是否未定義變量,如果typeof myVar === 'undefined'
為 true
, 則 myVar
未定義。
2. instanceof 運算符
使用 JS 函數(shù)的通常方法是通過在其名稱后添加一對括號來調(diào)用它:
function greet(who) { return `Hello, ${who}!`; } greet('World'); // => 'Hello, World!'
greet('World')
是常規(guī)函數(shù)調(diào)用。
JS 函數(shù)可以做更多的事情:它們甚至可以構(gòu)造對象! 要使函數(shù)構(gòu)造對象,只需在常規(guī)函數(shù)調(diào)用之前使用new
關(guān)鍵字:
function Greeter(who) { this.message = `Hello, ${who}!`; } const worldGreeter = new Greeter('World'); worldGreeter.message; // => 'Hello, World!'
new Greeter('World')
是創(chuàng)建實例worldGreeter
的構(gòu)造函數(shù)調(diào)用。
如何檢查 JS 是否使用特定構(gòu)造函數(shù)創(chuàng)建了特定實例? 使用 instanceof
運算符:
const bool = object instanceof Constructor;
其中object
是對對象求值的表達(dá)式,而Constructor
是構(gòu)造對象的類或函數(shù),instanceof
計算為布爾值。
worldGreeter
實例是使用Greeter
構(gòu)造函數(shù)創(chuàng)建的,因此worldGreeter instanceof Greeter
計算結(jié)果為true
。
從ES6 開始,可以使用 class
來定義對象。例如,定義一個類Pet
,然后創(chuàng)建它的一個實例myPet
:
class Pet { constructor(name) { this.name = name; } } const myPet = new Pet('Lily');
new Pet('Lily')
是創(chuàng)建實例myPet
的構(gòu)造調(diào)用。
由于myPet
是使用Pet
類構(gòu)造的-const myPet = new Pet('Lily')
, 所以 myPet instanceof Pet
的結(jié)果為 true
:
myPet instanceof Pet; // => true
但是,普通對象不是Pet
的實例:
const plainPet = { name: 'Zoe' }; plainPet instanceof Pet; // => false
我們發(fā)現(xiàn)instanceof
對于確定內(nèi)置的特殊實例(如正則表達(dá)式、數(shù)組)很有用:
function isRegExp(value) { return value instanceof RegExp; } isRegExp(/Hello/); // => true isRegExp('Hello'); // => false function isArray(value) { return value instanceof Array; } isArray([1, 2, 3]); // => true isArray({ prop: 'Val' }); // => false
2.1 instanceof 和父類
現(xiàn)在,Cat
擴(kuò)展了父類Pet
:
class Cat extends Pet { constructor(name, color) { super(name); this.color = color; } } const myCat = new Cat('Callie', 'red');
不出所料,myCat
是Cat
類的實例:
myCat instanceof Pet; // => true
但同時,myCat
也是基類Pet
的一個實例:
myCat instanceof Pet; // => true
3. 總結(jié)
JS 是一種弱類型的語言,這意味著對變量的類型沒有限制。
typeof expression
可以用來查看 expression
的類型,結(jié)果是可能是其中的一個:'string'
, 'number'
, 'boolean
', 'symbol'
, 'undefined'
, 'object'
, 'function'
。
typeof null
的值為'object'
,因此使用typeof
檢測對象的正確方法是typeof object ==='object'&& object!== null
。
instanceof
運算符讓我們確定實例的構(gòu)造函數(shù)。 如果object
是Constructor
的實例,則object instanceof Constructor
為true
。
感謝各位的閱讀!關(guān)于JavaScript中typeof和instanceof操作符的示例分析就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。