1. Three functions of toString method1. Return a string representing an object 2. Type of detection object Object.prototype.toString.call(arr) == = "[object Array]" 3. Return the string corresponding to the number. console.log(10.toString(2)) //10 is specifically for binary '1010' js contains binary, octal, decimal and octal bases. 2. Return a string representing an object 1. toString is a method on the Object prototype. Every object has a Code: class Person{ constructor(name,age){ this.name=name this.age=age } } let zs=new Person('张三',18) console.log( zs.toString() ) // [object Object]
3. Custom toString() We can also define a method to override the default A custom The code is as follows: class Person{ constructor(name,age){ this.name=name this.age=age } // Override Object.prototype.toString() toString(){ return `Person{name=${this.name},age=${this.age}}` } } let zs=new Person('张三',18) console.log( zs.toString() ) //Person{name=张三,age=18} Many built-in objects in
This is the end of this article about the three functions of the You may also be interested in:
|
<<: Detailed explanation of the usage of the rare tags fieldset and legend
>>: Introduction to installing and configuring JDK under CentOS system
Page directory structure Note that you need to mo...
Tabs: Category + Description Tag bar: Category =&...
There are many MySQL variables, some of which are...
Preface When my team was developing the tax syste...
Table of contents Why use day.js Moment.js Day.js...
For reference only for Python developers using Ub...
Detailed explanation of the misplacement of the in...
Table of contents Character Set Comparison Rules ...
Table of contents 01 CMD 02 ENTRYPOINT 03 WORKDIR...
In this section, we will learn about list element...
1. Title HTML defines six <h> tags: <h1&...
In the previous article, we introduced three comm...
MySQL is a very powerful relational database. How...
Detailed example of database operation object mod...
Have you ever had the need to compute a very larg...