w3resource

JavaScript: String function

Description

The String function is used to converts a specified object to a string. String is a top-level function and is not associated with any object.

Syntax

String(obj)

Parameters

obj: Required. An object.

Example of String function

The following web document converts the Date object to a string.

JavaScript Code:

var dt = new Date (4400346634522);
var str1 = String(dt);
console.log('4400346634522 converted to : '+str1);

View the example in the browser

Live demo:

See the Pen string-function-1 by w3resource (@w3resource) on CodePen.


Previous: JavaScript: Number function
Next: JavaScript: encodeURI() function

Test your Programming skills with w3resource's quiz.



Become a Patron!

Follow us on Facebook and Twitter for latest update.

It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.

https://w3resource.com/javascript/functions/string-function.php