Get the string representation of a value
获取值的字符串表示
The value to get the string representation for. 要获取字符串表示的值
The string representation of the value. 值的字符串表示
toString(42) // => '[object Number]'toString('hello') // => '[object String]'toString(undefined) // => '[object Undefined]'toString(null) // => '[object Null]'toString({}) // => '[object Object]' Copy
toString(42) // => '[object Number]'toString('hello') // => '[object String]'toString(undefined) // => '[object Undefined]'toString(null) // => '[object Null]'toString({}) // => '[object Object]'
Get the string representation of a value
获取值的字符串表示