Lodash - toString method



Syntax

_.toString(value)

Converts value to a string. An empty string is returned for null and undefined values. The sign of -0 is preserved.

Arguments

  • value (*) − The value to convert.

Output

  • (string) − Returns the converted string.

Example

var _ = require('lodash');
 
console.log(_.toString(-0));
console.log(_.toString([1, 2, 3]));

Save the above program in tester.js. Run the following command to execute this program.

Command

\>node tester.js

Output

-0
1,2,3
lodash_lang.htm
Advertisements