


A brief analysis of the difference between valueOf and toString in Javascript_javascript skills
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:
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!
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.
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.
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.
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.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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

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 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 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

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

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

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
