🏠 Go back to the homepage The String toString() method Find out all about the JavaScript toString() method of a string Published Mar 07 2019 Returns the string representation of the current String object: const str = new String('Test') str.toString() //'Test' It’s same as valueOf(). Download my free JavaScript Beginner's Handbook!