Lodash _.toString() 方法
Lodash 是一个基于 underscore.js 的 JavaScript 库。 Lodash 有助于处理数组、字符串、对象、数字等。
_.toString()方法用于将给定值转换为字符串。为空值和未定义值返回一个空字符串。值 -0 的符号被保留。
句法:
_.toString( value )
参数:此方法接受如上所述和如下所述的单个参数:
- value:此参数保存要转换的值。
返回值:该方法返回转换后的字符串。
示例 1:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.toString() method
console.log(_.toString(-0));
console.log(_.toString(['html', 'css', 'javascript']));
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.toString() method
// Will print an empty string
console.log(_.toString(null));
console.log(_.toString([1, 2, 3]));
输出:
'-0'
'html,css,javascript'
示例 2:
Javascript
// Requiring the lodash library
const _ = require("lodash");
// Use of _.toString() method
// Will print an empty string
console.log(_.toString(null));
console.log(_.toString([1, 2, 3]));
输出:
''
'1,2,3'