JavaScript String valueOf() Method

You are Here:

JavaScript String valueOf() Method

The valueOf() method returns the primitive value of a String object.

The return value is equivalent to String.toString().

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <script> var strObj = new String("bar"); document.write("strObj = " +typeof strObj); var result = strObj.valueOf(); document.write("<br>result = "+typeof result); </script> </body> </html>

Syntax

strObj.valueOf()

Return Value

ValueExplanation
StringReturns a string representing the primitive value of a given String object.

Reminder

Hi Developers, we almost covered 97% of JavaScript Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in JavaScript.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author