|
|
toUTCString for Universal Coordinated Time (UTC) formatSome time we have to convert date object to universal time standard. The output of such conversion will be a string. We can use toUTCString to convert date object to string format. Here is a sample code
Here is the code to do this .
<script type="text/javascript">
var dt= new Date();
document.write(dt);
document.write("<br>after conversion <br>");
document.write(dt.toUTCString());
</script>
While storing cookies we have to store expire date of the data in this format.
Found anything wrong or wants to improve the code by adding more features? Post your short comment here or use the Forum
| |
| | |
|
|
|
|
|