search
HomeWeb Front-endJS TutorialDiscussion on the use of typeof and instanceof operators in JavaScript_Basic knowledge

When writing JavaScript code, the two operators typeof and instanceof are used from time to time and are must-use. but! It is always difficult to get the desired results directly when using them. It is generally said that "these two operators are perhaps the biggest design flaw in JavaScript, because it is almost impossible to get the desired results from them"
typeof
Explanation: typeof returns a string of the data type of an expression, and the return result is the basic data type of js, including number, boolean, string, object, undefined, function.
Judging from the description, there seems to be no problem.

The following code writes a numerical variable, and the result after typeof is "number".

Copy code The code is as follows:

var a = 1;
console.log( typeof(a)); //=>number

If you use the constructor new of type Number to create a variable, the result after typeof is "object".
Copy code The code is as follows:

var a = new Number(1);
console.log(typeof(a)); //=>object

The above two output results seem to have no problem, which seems to be a matter of course from the book. Because javascript is designed this way.

But! The problem is that since typeof is called, it should accurately return the type of a variable, whether it is created directly with a value or with a type constructor, otherwise! What else should I use you for?
So for:
Copy the code The code is as follows:

var a = 1;
var b = new Number(1);

Accurately speaking, the types of a and b variables should be Number to get the desired result.
The accurate type information is stored in the value of the variable's internal property [[Class]], which is obtained by using the method toString defined on Object.prototype.

Get type information:
Copy code The code is as follows:

var a = 1;
var b = new Number(1);
console.log(Object.prototype.toString.call(a));
console.log(Object.prototype.toString.call(b ));

Output:
Copy code The code is as follows:

[object Number]
[object Number]

Isn’t it already very straightforward? Let’s do a little processing and get the direct result:
Copy code The code is as follows:

var a = 1;
var b = new Number(1);
console.log( Object.prototype.toString.call(a).slice(8,-1));
console.log(Object.prototype.toString.call(b).slice(8,-1));

Output:
Number
Number
This is the desired result.
For better use, we encapsulate a method to determine whether a variable is of a certain type:
Copy code The code is as follows:

function is(obj,type) {
var clas = Object.prototype.toString.call(obj).slice(8, -1);
return obj !== undefined && obj !== null && clas === type;
}

I have defined some variables and tested them. Let’s take a look at their typeof output first:
Copy code The code is as follows:

var a1=1;
var a2=Number(1 );
var b1="hello";
var b2=new String("hello");
var c1=[1,2,3];
var c2=new Array(1 ,2,3);
console.log("a1's typeof:" typeof(a1));
console.log("a2's typeof:" typeof(a2));
console.log(" b1's typeof:" typeof(b1));
console.log("b2's typeof:" typeof(b2));
console.log("c1's typeof:" typeof(c1));
console .log("c2's typeof:" typeof(c2));
Output:
a1's typeof:number
a2's typeof:object
b1's typeof:string
b2's typeof:object
c1's typeof:object
c2's typeof:object

使用する新しく作成した関数は次のとおりです:
コードをコピーします コードは次のとおりです:

console.log("a1 は番号:" is(a1,"Number"));
console.log("a2 は番号:" is(a2,"Number")); .log( "b1 は文字列です:" is(b1,"String"));
console.log("b2 は文字列です:" is(b2,"String")); c1 は配列 :" is(c1,"Array"));
console.log("c2 は配列:" is(c2,"Array"));
出力:
a1 は数値: true
a2 は Number:true
b1 は String:true
b2 は String:true
c1 は Array:true
c2 は Array:true


注: typeof 実際の用途は、変数が定義されているか、値が割り当てられているかを検出することです。

instanceof
説明: オブジェクトが特定のデータ型であるかどうか、または変数がオブジェクトのインスタンスであるかどうかを判断します。 instanceof 演算子も、2 つの組み込み型変数の比較に使用される場合には無力であり、結果にも満足できません。


console.log("abc"instanceof String ); // false
console.log("abc" オブジェクトのインスタンス); // 偽
console.log(new String("abc") インスタンスオブ String); // true
console.log( new String( "abc")instanceof Object); // true


カスタム オブジェクトを比較する場合にのみ関係を正確に反映します。


コードをコピーします コードは次のとおりです。
function Person() {}
function Man( ) {}
Man.prototype = new Person();
console.log(new Man()instanceofMan) // true
console.log(new Man()instanceofMan); ; // 真

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
instanceof有什么作用instanceof有什么作用Nov 14, 2023 pm 03:50 PM

instanceof的作用是判断一个对象是否是某个类的实例,或者是否实现了某个接口。instanceof是一个用于检查对象是否是指定类型的运算符。instanceof运算符使用场景:1、类型检查:可以用来判断一个对象的具体类型,以便根据不同类型执行不同的逻辑;2、接口判断:可以用来判断一个对象是否实现了某个接口,以便根据接口的定义调用相应的方法;3、向下转型等等。

Linux 命令中“!”操作符的八个神秘用途Linux 命令中“!”操作符的八个神秘用途Jun 27, 2023 pm 12:51 PM

在不同的shell中,使用’!’符号的大多数Linux命令用法可能会有所不同。虽然我提供的示例通常在bashshell中使用,但其他一些Linuxshell可能具有不同的实现,或者可能根本不支持某些对’!’符号的使用。让我们深入了解Linux命令中’!’符号的令人惊奇和神秘的用法。1、使用命令编号从历史记录中运行命令你可能不知道的是,你可以从历史命令中运行一个命令(已经执行过的命令)。首先,通过运行’history’命令找到命令的编号。linuxmi@linuxmi:~/www.linuxmi.

深入了解PHP中的模等于操作符的用法深入了解PHP中的模等于操作符的用法Mar 19, 2024 pm 12:54 PM

模等于操作符(%)在PHP中是一个非常常用的运算符,用于计算两个数相除的余数。在本文中,我们将深入了解模等于操作符的用法,并提供具体的代码示例帮助读者更好地理解。首先,让我们看一个简单的例子,假设我们需要计算一个数除以另一个数的余数:$a=10;$b=3;$remainder=$a%$b;echo"10除以3的余数是:&

sql in操作符使用sql in操作符使用Aug 04, 2023 pm 03:58 PM

sql in操作符使用:1、单列匹配,可以使用IN操作符匹配一个列中的多个值;2、多列匹配,IN操作符也可以用于匹配多个列的值;3、子查询,IN操作符也可以与子查询一起使用,子查询是一个嵌套在主查询中的查询语句。

java中instanceof是什么意思java中instanceof是什么意思Nov 13, 2023 pm 01:52 PM

在Java中,instanceof是一个二元运算符,用于检查一个对象是否是一个类的实例,或者是一个类的子类的实例,其语法形式为“object instanceof class”,其中,object是一个对象引用,class是一个类名或者接口名。

java中instanceof运算符怎么使用java中instanceof运算符怎么使用May 19, 2023 am 08:16 AM

概念1、该运算符用于操作对象的例子,检查对象是否为特定类型(类型或接口类型)。格式2、如果计算器左侧变量所指的对象是操作器右侧类或接口的对象,则结果是真实的。(Objectreferencevariable)instanceof(class/interfacetype)实例packagecom.verify_instanceof;publicclassTestInstanceOf{publicstaticvoidmain(String[]args){//下面四行代码用来证明:instanceof

php7新增的两个操作符:“?->”和“??”php7新增的两个操作符:“?->”和“??”Mar 21, 2023 pm 03:49 PM

在之前的PHP版本中,如果我们没有定义一个变量,直接使用它会导致Undefined variable的错误。但是,在PHP7中,我们可以使用一些新功能来避免这个问题的发生。这些新功能包括两个新的操作符,即:?->和??。它们可以分别解决两种不同类型的问题。

在Java中的instanceof运算符在Java中的instanceof运算符Sep 01, 2023 pm 08:01 PM

该运算符仅用于对象引用变量。该运算符检查对象是否属于特定类型(类类型或接口类型)。instanceof运算符写为-(Objectreferencevariable)instanceof(class/interfacetype)如果运算符左侧变量引用的对象通过了右侧类/接口类型的IS-A检查,则结果将为true。以下是一个示例-示例 现场演示publicclassTest{  publicstaticvoidmain(Stringargs[]){&nbs

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.