Home Web Front-end JS Tutorial A brief analysis of the difference between valueOf and toString in Javascript_javascript skills

A brief analysis of the difference between valueOf and toString in Javascript_javascript skills

May 16, 2016 pm 05:40 PM
tostring valueof

Foreword

Basically, all JS data types have these two methods, except null. They both solve the problem of JavaScript value calculation and display, and rewriting will increase the optimization of their calls.

Test Analysis

Let’s look at an example first:

Copy code The code is as follows:

var aaa = {
i: 10,
valueOf: function() { return this.i 30; },
toString: function() { return this.valueOf() 10; }
}

alert(aaa > 20); // true
alert( aaa); // 40
alert(aaa); // 50


The reason for this Results because they secretly call the valueOf or toString method.
But how to distinguish which method is called under what circumstances? We can test it through another method.
Since console.log is used, please experiment in FF with firebug installed!
Copy code The code is as follows:

var bbb = {
i: 10,
toString: function() {
console.log('toString');
return this.i;
},
valueOf: function() {
console.log(' valueOf');
return this.i;
}
}

alert(bbb); // 10 toString
alert( bbb); // 10 valueOf
alert('' bbb); // 10 valueOf
alert(String(bbb)); / / 10 toString
alert(Number(bbb)); // 10 valueOf
alert(bbb == '10'); // true valueOf
alert(bbb === '10'); / / false


The result gives the impression that the toString method is called when converting to a string, and the valueOf method is called when converting to a numerical value, but two of them are very discordant. One is alert('' bbb), string concatenation should call the toString method...the other one we can temporarily understand is that the === operator does not perform implicit conversion, so they are not called. To find out the truth, we need more rigorous experiments.
Copy code The code is as follows:

var aa = {
i: 10,
toString: function() {
console.log('toString');
return this.i;
}
}
alert(aa);// 10 toString
alert( aa); // 10 toString
alert('' aa); // 10 toString
alert(String(aa)); // 10 toString
alert(Number(aa)); // 10 toString
alert(aa == '10'); // true toString

Look at valueOf again.
Copy code The code is as follows:

var bb = {
i: 10,
valueOf: function() {
console.log('valueOf');
return this.i;
}
}

alert(bb);// [object Object]
alert( bb); // 10 valueOf
alert('' bb); // 10 valueOf
alert(String(bb)) ; // [object Object]
alert(Number(bb)); // 10 valueOf
alert(bb == '10'); // true valueOf


Found something Different right? ! It is not as unified and regular as toString above.
As for that [object Object], I guess it is inherited from Object. Let’s get rid of it and take a look.
Copy code The code is as follows:

Object.prototype.toString = null;
var cc = {
i: 10,
valueOf: function() {
console.log('valueOf');
return this.i;
}
}


alert(cc); // 10 valueOf
alert( cc); // 10 valueOf
alert('' cc); // 10 valueOf
alert(String(cc) ); // 10 valueOf
alert(Number(cc)); // 10 valueOf
alert(cc == '10'); // true valueOf


Summary: valueOf It is biased towards operation, and toString is biased towards display.
1. When converting objects (for example: alert(a)), the toString method will be called first. If toString is not overridden, the valueOf method will be called. If neither method is overridden, but the toString output of Object is .
2. When forcibly converting to a string type, the toString method will be called first, and when forcibly converting to a number, the valueOf method will be called first.
3. When there is an operation operator, valueOf has a higher priority than toString.
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 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 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)

Convert basic data types to strings using Java's String.valueOf() function Convert basic data types to strings using Java's String.valueOf() function Jul 24, 2023 pm 07:55 PM

Convert basic data types to strings using Java's String.valueOf() function In Java development, when we need to convert basic data types to strings, a common method is to use the valueOf() function of the String class. This function can accept parameters of basic data types and return the corresponding string representation. In this article, we will explore how to use the String.valueOf() function for basic data type conversions and provide some code examples to

Convert string to boolean using java's Boolean.valueOf() function Convert string to boolean using java's Boolean.valueOf() function Jul 24, 2023 pm 05:15 PM

Use Java's Boolean.valueOf() function to convert a string to a Boolean value. In Java programming, you often encounter situations where you need to convert a string to a Boolean value. Java provides a convenient way to achieve this requirement, using the Boolean.valueOf() function. This function can convert a Boolean value represented by a string into the corresponding Boolean type. Let's take a closer look at the usage of Boolean.valueOf(). Given a string, we

Usage and examples of valueOf method in Java Usage and examples of valueOf method in Java Apr 24, 2023 pm 02:13 PM

1. The concept is to obtain a single enumeration object through a string. There are three syntax forms. 2. Parameter i, the integer of Integer object. s, a string of Integer objects. radix, the base number used when parsing the string s, is used to specify the base number used. 3. The return value is an integer object exception represented by a string parameter. If the string cannot be parsed, a NumberFormatException exception is thrown. 4. Instance publicenumSignal{//Define an enumeration type GREEN, YELLOW, RED; publicstaticvoidmain(String[]args ){Signalgreen=Sig

Convert StringBuffer to string using toString() method of StringBuffer class Convert StringBuffer to string using toString() method of StringBuffer class Jul 25, 2023 pm 06:45 PM

Convert a StringBuffer to a string using the toString() method of the StringBuffer class. In Java, the StringBuffer class is a class used to handle mutable strings. It provides many convenient methods to modify and manipulate strings. When we need to convert a StringBuffer object into a string, we can use the toString() method to achieve this. The toString() method of the StringBuffer class returns a

Convert character array to string using java's String.valueOf() function Convert character array to string using java's String.valueOf() function Jul 27, 2023 am 11:22 AM

Convert character array to string using Java's String.valueOf() function In Java programming, we often need to convert character array to string. Fortunately, Java provides a convenient method String.valueOf() to achieve this function. In this article, we will explain how to convert a character array to a string using the String.valueOf() function and provide corresponding code examples. String.valueOf() function is

Convert other types to string using java's String.valueOf() function Convert other types to string using java's String.valueOf() function Jul 24, 2023 pm 10:31 PM

Use Java's String.valueOf() function to convert other types to strings. In Java development, you often encounter the need to convert other data types to strings. To meet this need, Java provides the String.valueOf() function to implement type conversion. This article explains how to use the String.valueOf() function to convert other types to strings and provides code examples. Convert a basic data type to a string First, let's look at how to convert a basic data type to a string

How to customize the toString() method in Java How to customize the toString() method in Java Apr 27, 2023 pm 02:25 PM

Simulate the implementation of the tostring function publicstaticStringmyToString(int[]array){Stringstr="[";for(inti=0;i

How to print array using toString() method in Java? How to print array using toString() method in Java? May 09, 2023 am 10:01 AM

1. Description Function 1 can be converted into a string Function 2 can convert the value into a string of different base numbers (octal decimal, etc.) 2. Syntax StringtoString() staticStringtoString(inti) 3. Parameter i--the integer to be converted . 4. Return value toString(): Returns a String object representing an Integer value. toString(inti): Returns a String object representing the specified int. 5. Example importjava.util.Arrays; publicclassArrayPrint{publicstaticvoidmain(Str

See all articles