Something similar to Unix's timestamp, that is a single number that represents the current time and date. Either as a number or a string.
|
2
|
|
|
|
|
|
|
||
|
|
|
|
time = Math.round(((new Date()).getTime()-Date.UTC(1970,0,1))/1000); |
|||
|
|
|
|
Great solution: i added
into my Ajax call now it works. Is there a solution to disable caching when making the POST/GET via
thanks |
||
|
|
|
i want to ask something.... plz help me... somebody know about coding which is... when we enter date for example for start date, after that, for the ending date, its automatically fill up. and the date is set for two years after the start. plz help me |
||||||||||
|
|
|
I don't have enough points to add a comment to daveb's accepted answer but I think it's worth saying, so I hope you don't mind me putting it here. One benefit of his way is that the same syntax can be found in other languages. For instance, the following code will give you the exact same timestamp in Java or Scala:
|
||
|
|
|
|
|
||
|
|
|
|
|
||
|
|
|
|
|
|||
