Copyright © tutorialspoint.com
This method converts the date into a JSON string (following the ISO format used by JSON).
Date.toJSON(); |
<html>
<head>
<title>Prototype examples</title>
<script type="text/javascript"
src="/javascript/prototype.js">
</script>
<script>
function showResult()
{
var str = new Date(1969, 11, 31, 19).toJSON();
alert ("Returns JSON String: " + str );
}
</script>
</head>
<body>
<p>Click the button to see the result.</p>
<br />
<br />
<input type="button" value="Result" onclick="showResult();"/>
</body>
</html>
|
To understand it in better way you can Try it yourself.