js data types and their judgment method examples

js data types and their judgment method examples

js data types

Basic data types: number, string, boolean, undefined, null, Symbol,

Reference data type: object

NaN belongs to number;
Function, Array, Date are all objects;

Basic data types except null can be judged by typeof, and reference data types except Function return Object

let a = 1,
 b = '2',
 c = true,
 d = undefined,
 e = null,
 f = Symbol('f'),
 g = function () {},
 h = [],
 i = new Date()
console.log(typeof a)
console.log(typeof b)
console.log(typeof c)
console.log(typeof d)
console.log(typeof e)
console.log(typeof f)
console.log(typeof g)
console.log(typeof h)
console.log(typeof i)

View the output

You can see that the typeof of null is object. This is a historical bug. If you are interested, you can refer to "The history of "typeof null""

You can use the following method to determine null

function checkNull(num) {
 return num === null
}

The detailed type of object can be determined by Object.prototype.toString.call()

function checkObject(obj) {
 return Object.prototype.toString.call(obj)
}
console.log(checkObject(g))
console.log(checkObject(h))
console.log(checkObject(i))

You can see the output results

It can also be judged by the constructor constructor()

console.log(g.constructor === Function)
console.log(h.constructor === Array)
console.log(i.constructor === Date)

You can see the output results

Summarize

This is the end of this article about js data types and their judgment methods. For more relevant js data types and judgment content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Summary of 4 methods for determining data types in js and jquery
  • 4 ways to determine data types in JavaScript
  • js data type judgment method
  • Examples of correct judgment methods for data types in JS
  • Four methods of using JS to determine data types
  • Four data type judgment methods in JS
  • Share several methods of JavaScript type judgment

<<:  MySQL and MySQL Workbench Installation Tutorial under Ubuntu

>>:  How to build php7 with docker custom image

Recommend

How to use the jquery editor plugin tinyMCE

Modify the simplified file size and download the ...

What is the function and writing order of the a tag pseudo class

The role of the a tag pseudo-class: ":link&qu...

Element table header row height problem solution

Table of contents Preface 1. Cause of the problem...

In-depth understanding of javascript prototype and prototype chain

Table of contents 1. What is a prototype? 2. Prot...

Detailed steps for adding hosts you need to monitor in zabbix

Add monitoring host Host 192.168.179.104 is added...

Introduction to HTML link anchor tags and their role in SEO

The <a> tag is mainly used to define links ...

Detailed tutorial for installing influxdb in docker (performance test)

1. Prerequisites 1. The project has been deployed...

How to get USB scanner data using js

This article shares the specific process of js ob...

How to add a certificate to docker

1. Upgrade process: sudo apt-get update Problems ...

HTML form tag tutorial (3): input tag

HTML form tag tutorial, this section mainly expla...

How to reduce image size using Docker multi-stage build

This article describes how to use Docker's mu...

Ubuntu starts the SSH service remote login operation

ssh-secure shell, provides secure remote login. W...

HTML table_Powernode Java Academy

To draw a table in HTML, use the table tag tr me...