Home Web Front-end JS Tutorial JavaScript implicit type conversion_javascript tips

JavaScript implicit type conversion_javascript tips

May 16, 2016 pm 03:10 PM

JavaScript’s data types are very weak (otherwise it wouldn’t be called a weakly typed language)! When using arithmetic operators, the data types on both sides of the operator can be arbitrary. For example, a string can be added to a number. The reason why operations can be performed between different data types is because the JavaScript engine will quietly perform implicit type conversion on them before the operation. The following is the addition of numeric types and Boolean types:

Copy code The code is as follows:

3 + true; // 4

The result is a numeric value! If it is in a C or Java environment, the above operation will definitely cause an error because the data types on both sides of the operator are inconsistent! However, in JavaScript, only in a few cases, the wrong type will cause an error, such as when calling a non-function, or reading a null or undefined property, as follows:

Copy code The code is as follows:

"hello"(1); // error: not a function
null.x; // error: cannot read property 'x' of null

In most cases, JavaScript will not make errors, but will automatically perform the corresponding type conversion. For example, arithmetic operators such as -, *, /, and % will convert their operands into numbers, but the "+" sign is a little different. In some cases, it is an arithmetic plus sign, and in other cases, it is a string. The connection symbol depends on its operands, as follows:

Copy code The code is as follows:

2 + 3; // 5
"hello" + " world"; // "hello world"

But what would be the result if strings and numbers were added? JavaScript will automatically convert numbers into characters, regardless of whether the number or string comes first, as follows:

Copy code The code is as follows:

"2" + 3; // "23"
2 + "3"; // "23"

The result of adding a string and a number is a string. The result of adding a string and a number is a string. The result of adding a string and a number is a string. Say important things three times! ! ! ! ! !

In addition, it should be noted that the operation direction of "+" is from left to right, as follows:

Copy code The code is as follows:

1 + 2 + "3"; // "33"

This is equivalent to:

Copy code The code is as follows:

(1 + 2) + "3"; // "33"

In contrast, the following results are different:

Copy code The code is as follows:

1 + "2" + 3; // "123"

However, implicit type conversion sometimes hides some errors, for example, null will be converted to 0, and undefined will be converted to NaN. It should be noted that NaN and NaN are not equal (this is due to the precision of floating point numbers), as follows:

Copy code The code is as follows:

var x = NaN;
x === NaN; // false

Although JavaScript provides isNaN to detect whether a certain value is NaN, this is not very accurate because there is an implicit conversion process before calling the isNaN function, which will convert those Values ​​that are not originally NaN are converted to NaN, as follows:

Copy code The code is as follows:

isNaN("foo"); // true
isNaN(undefined); // true
isNaN({}); // true
isNaN({ valueOf: "foo" }); // true

After testing the above code using isNaN, we found that strings, undefined, and even objects all returned true! ! ! However, we can't say that they are also NaN, right? All in all, the conclusion is: isNaN detection of NaN is not reliable! ! !

Fortunately, there is a reliable and accurate way to detect NaN. We all know that NaN is the only one that does not equal itself. Then, we can use the inequality sign (!==) to determine whether a number is equal to itself, so that NaN can be detected, as follows:

var a = NaN;
a !== a; // true
var b = "foo";
b !== b; // false
var c = undefined;
c !== c; // false
var d = {};
d !== d; // false
var e = { valueOf: "foo" };
e !== e; // false
Copy after login

We can also define this mode as a function, as follows:

function isReallyNaN(x) {
return x !== x;
}
Copy after login

OK, the NaN detection method is that simple. Let’s continue to discuss the implicit conversion of objects!

Objects can be converted into primitive values. The most common method is to convert it into a string, as follows:

"the Math object: " + Math; // "the Math object: [object Math]"
"the JSON object: " + JSON; // "the JSON object: [object JSON]"
Copy after login

The object is converted into a string by calling its toSting function. You can call it manually to check:

Math.toString(); // "[object Math]"
JSON.toString(); // "[object JSON]"
Copy after login

Similarly, objects can also be converted into numbers through the valueOf function. Of course, you can also customize this valueOf function, as follows:

"J" + { toString: function() { return "S"; } }; // "JS"
2 * { valueOf: function() { return 3; } }; // 6
Copy after login

If an object has both the valueOf method and the toString method, then the valueOf method will always be called first, as follows:

var obj = {
toString: function() {
return "[object MyObject]";
},
valueOf: function() {
return 17;
}
};
"object: " + obj; // "object: 17"
Copy after login

However, in most cases, this is not what we want. In general, try to make the values ​​represented by valueOf and toString the same (although the types can be different).

The last type of forced type conversion is often called "truth operation", such as if, ||, &&. Their operands are not necessarily Boolean. JavaScript will convert some non-Boolean values ​​into Boolean values ​​through simple conversion rules. Most values ​​will be converted to true, only a few are false, they are: false, 0, -0, ”", NaN, null, undefined, because there are numbers, strings and objects with false values, so, It is not very safe to directly use truth value conversion to determine whether the parameters of a function are passed in. For example, there is a function that can have optional parameters with default values, as follows:

function point(x, y) {
if (!x) {
x = 320;
}
if (!y) {
y = 240;
}
return { x: x, y: y };
}
Copy after login

This function will ignore any parameter whose true value is false, including 0, -0;

Copy code The code is as follows:

point(0, 0); // { x: 320, y: 240 }

A more accurate way to detect undefined is to use the typeof operation:

function point(x, y) {
if (typeof x === "undefined") {
x = 320;
}
if (typeof y === "undefined") {
y = 240;
}
return { x: x, y: y };
}
Copy after login

This way of writing can distinguish between 0 and undefined:

point(); // { x: 320, y: 240 }
point(0, 0); // { x: 0, y: 0 }
Copy after login

Another method is to use parameters to compare with undefined, as follows:

if (x === undefined) { ... }
Copy after login

Summary:

1. Type errors may be hidden by type conversion.

2. "+" can represent both string concatenation and arithmetic addition, depending on its operands. If one of them is a string, then it is string concatenation.

3. The object converts itself into a number through the valueOf method, and converts itself into a string through the toString method.

4. Objects with valueOf methods should define a corresponding toString method to return equal numbers in string form.

5. When detecting some undefined variables, typeOf or comparison with undefined should be used instead of true value operation directly.

That’s it for everyone about JavaScript implicit type conversion. I hope it will be helpful to you!

Statement of this Website
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

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 ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Replace String Characters in JavaScript Replace String Characters in JavaScript Mar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins 8 Stunning jQuery Page Layout Plugins Mar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web Applications Build Your Own AJAX Web Applications Mar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 jQuery Fun and Games Plugins 10 jQuery Fun and Games Plugins Mar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries? How do I create and publish my own JavaScript libraries? Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

Load Box Content Dynamically using AJAX Load Box Content Dynamically using AJAX Mar 06, 2025 am 01:07 AM

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

jQuery Parallax Tutorial - Animated Header Background jQuery Parallax Tutorial - Animated Header Background Mar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

How to Write a Cookie-less Session Library for JavaScript How to Write a Cookie-less Session Library for JavaScript Mar 06, 2025 am 01:18 AM

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session

See all articles