Copyright © tutorialspoint.com
This method returns the primitive value of a String object.
string.valueOf( ) |
Here is the detail of parameters:
NA
Returns the primitive value of a String object.
<html>
<head>
<title>JavaScript String valueOf() Method</title>
</head>
<body>
<script type="text/javascript">
var str = new String("Hello world");
document.write(str.valueOf( ));
</script>
</body>
</html>
|
This will produce following result:
Hello world |
To understand it in better way you can Try it yourself.
Copyright © tutorialspoint.com