Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Pythonではtime.time()、これを取得するために使用できます:
time.time()
time = time.time() time = 1362914221
これをjava-scriptで取得するにはどうすればよいですか?
time = ????
使用できます
time = (new Date()).getTime() / 1000;
MDN の getTime() を参照してください。
ちょうどこのような:
var time = +new Date;