|
|
toDateString()To convert date object to a string we have to use toDateString function. The output we will get is a string. Here is the syntax
Date.toDateString
Here is an example.
<script type="text/javascript">
var dt= new Date();
document.write(dt + "<br><br>");
document.write(dt.toDateString());
</script>
The output of the above code is here.
Note that before applying any string functions to date object we must convert it to string. The line bellow will generate error message
document.write(dt.substr(5)); // error
dt in above code is a date object so we can't use like this
Found anything wrong or wants to improve the code by adding more features? Post your short comment here or use the Forum
| |
| | |
|
|
|
|
|