search
HomeWeb Front-endJS TutorialIntroduction to typeof and instanceof in javascript_Basic knowledge

typeof is used to detect the data type of a given variable (also called basic type, basic data type. Including undefined, boolean, string, number, object, function)
var message = "so easy";
alert(typeof message); //"string"
alert(typeof 12); //"number"

You can remember it like this: typeof is used to judge "variables" that are not created with new.

instanceof is used to detect the type of an object (also called a reference type. It includes Object, Array, Date, RegExp, Function, and basic packaging types (including Boolean, Number, String))
var numberObject = new Number(10 );
var numberValue = 10;
alert(typeof numberObject); //"object"
alert(typeof numberValue); //"number"
alert(numberObject instanceof Number); // true
alert(numberValue instanceof Number); //false
numberValue is the basic data type of number and does not belong to any reference type.
NumberObject is the basic data type of object and belongs to the Number reference type (all reference types inherit from the Object reference type).

You can remember it like this: instanceof detects "objects" created with new. "Variables" that are not created through new do not belong to any reference type. Using typeof to detect "objects" created with new always returns "object reference type".

The isPrototypeOf() method is used to detect the relationship between prototype and instance. instanceof can also be detected. As long as the prototype appears in the prototype chain, it can be said to be the prototype of the instance derived from the prototype chain.
var person = new Person(); //Person inheritance and Object
alert(Person.prototype.isPrototypeOf(person)); //true
alert(Object.prototype.isPrototypeOf(person)); //true

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、向下转型等等。

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

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

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

instanceof后为什么要强转instanceof后为什么要强转Nov 14, 2023 pm 03:43 PM

在使用instanceof运算符检查对象的类型时,如果结果为true,表示对象是指定类型的实例。但是,编译器并不会自动将对象转换为指定类型,因此需要进行强制类型转换。强制类型转换是将一个对象从一种类型转换为另一种类型的操作。在使用instanceof运算符后,如果确定对象是指定类型的实例,并且希望以该类型进行操作,就需要进行强制类型转换。

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

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

为什么不加instanceof会报错为什么不加instanceof会报错Nov 13, 2023 pm 03:05 PM

原因是: instanceof运算符用于检查一个对象是否是某个特定类(或其派生类)的实例。如果对象不是一个类的实例,那么就无法进行类型判断,因此会抛出错误。为了避免这种错误,在使用instanceof运算符时,需要确保对象是一个类的实例。如果不确定对象的类型,可以使用其他方式进行类型判断。

为什么不用instanceof为什么不用instanceofNov 14, 2023 pm 04:05 PM

不用instanceof的原因有:1、正在使用的编程语言可能不支持 instanceof运算符,;2、认为使用其他方法可以更好地实现需求,在某些情况下,使用其他方法来检查对象类型可能更有效或更适合你的需求;3、不熟悉 instanceof运算符的使用方式或不确定它的行为;4、在某些情况下,使用 "instanceof" 可能不是最佳的选择。

instanceof为什么可以接口instanceof为什么可以接口Nov 13, 2023 pm 03:09 PM

instanceof不可以接口。原因是:instanceof关键字用于检查一个对象是否是特定类的实例,不能直接用于检查一个对象是否是接口的实例,因为接口不能被实例化。

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

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.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software