can someoe explain to me this example, please: http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_gettime
function myFunction()
{
var d = new Date();
var x = document.getElementById("demo");
x.innerHTML=d.getTime();
}
So there is variable that holds current date, putting some data into element with "demo" id. But where on earth is something that tells me anything about:January 1, 1970? Is it something like mysterious date - known to everybody?
The second question is: why my fiddle doesn't work?:( http://jsfiddle.net/jwUzM/3/
Thanks!