Find out all about the JavaScript valueOf() method of a string
Returns the string representation of the current String object:
const str = new String('Test')
str.valueOf() //'Test'
Same as toString()
.
Published Mar 12 2019
Find out all about the JavaScript valueOf() method of a string
Returns the string representation of the current String object:
const str = new String('Test')
str.valueOf() //'Test'
Same as toString()
.