ES6 - toString()



This method returns a string representing the specified object.

Syntax

string.toString()  

Return Value

Returns a string representing the specified object.

Example

var str = "Apples are round, and Apples are Juicy."; 
console.log(str.toString( ));   

Output

Apples are round, and Apples are Juicy.  
Advertisements