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.



Follow us on Facebook and Twitter for latest update.