_.toPlainObject(value)
_.toPlainObject(value)
用于将值转换为普通对象。
value
:要转换的值。
返回值:转换后的普通对象。
示例:
javascript
console.log(_.toPlainObject({ a: 1, b: 2 })); // 输出:{ 'a': 1, 'b': 2 }
console.log(_.toPlainObject([1, 2, 3])); // 输出:{ '0': 1, '1': 2, '2': 3 }
console.log(_.toPlainObject("hello")); // 输出:{}
console.log(_.toPlainObject(123)); // 输出:{}
console.log(_.toPlainObject(null)); // 输出:{}
console.log(_.toPlainObject(undefined)); // 输出:{}
在这个例子中,_.toPlainObject
将值转换为普通对象。如果值是对象,则返回该对象;如果值是数组,则返回数组转换而来的对象;对于其他类型的值,则返回一个空对象。