3 functions of toString method in js

3 functions of toString method in js

1. Three functions of toString method

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

Object.prototype.toString()

1. toString is a method on the Object prototype.

Every object has a toString() method. By default, toString()方is inherited by every object. If toString is not overridden by the object defined. toString returns '[object type]' where type is the type of the object. The value of type can be Object.

Code:

class Person{
  constructor(name,age){
    this.name=name
    this.age=age
  }
}
let zs=new Person('张三',18)
console.log( zs.toString() ) // [object Object]


  • Through the above output statement, we can be sure.
  • What is returned is indeed a string representing an object.

3. Custom toString()

We can also define a method to override the default toString method.

A custom toString() method cannot take any arguments and must return a string. The defined toString can return any value we need. If it can carry any information about the object, it will become very useful.

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 JavaScript have rewritten this function to implement functions that are more suitable for their own needs.

  • 1. Convert each element of Array to a string and concatenate them one by one, using commas as separators between two elements.
  • 2. Boolean If the Boolean value is true, it returns "true". Otherwise returns "false"".
  • 3. Date returns the text representation of a date.

This is the end of this article about the three functions of the toString method in js. For more relevant content about the toString method in js, 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:
  • JavaScript Number object toString() method
  • Use toString() method in JavaScript to return time as string
  • Detailed explanation of the use of toString() method in JavaScript
  • JavaScript defines objects through function and adds toString() method to objects

<<:  Detailed explanation of the usage of the rare tags fieldset and legend

>>:  Introduction to installing and configuring JDK under CentOS system

Recommend

Vue-CLI multi-page directory packaging steps record

Page directory structure Note that you need to mo...

Several implementation methods of the tab bar (recommended)

Tabs: Category + Description Tag bar: Category =&...

Several important MySQL variables

There are many MySQL variables, some of which are...

More elegant processing of dates in JavaScript based on Day.js

Table of contents Why use day.js Moment.js Day.js...

Install Python virtual environment in Ubuntu 18.04

For reference only for Python developers using Ub...

Solution to input cursor misalignment in Chrome, Firefox, and IE

Detailed explanation of the misplacement of the in...

Summary of MySQL character sets

Table of contents Character Set Comparison Rules ...

Introduction to the use of common Dockerfile commands

Table of contents 01 CMD 02 ENTRYPOINT 03 WORKDIR...

Web page HTML code explanation: ordered list and unordered list

In this section, we will learn about list element...

Commonly used HTML format tags_Powernode Java Academy

1. Title HTML defines six <h> tags: <h1&...

Five ways to achieve automatic page jump in HTML

In the previous article, we introduced three comm...

Detailed example of database operation object model in Spring jdbc

Detailed example of database operation object mod...

How to use multi-core CPU to speed up your Linux commands (GNU Parallel)

Have you ever had the need to compute a very larg...