JavaScript unix timestamp 맛보기.

ITWeb/개발일반 2011. 11. 30. 15:08
아래 두개 중에 택 1 하세요.
둘다 정수를 return 해 줍니다.
다만, 차이는 아시죠.. 반올림과 내림이라는거..

[참고사이트]
http://www.w3schools.com/jsref/jsref_obj_math.asp

[CASE 1]
Math.round((new Date()).getTime() / 1000);

[CASE2]
Math.floor((new Date()).getTime() / 1000);

 
: