티스토리 뷰
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
<script type="text/javascript">
var value = 0;
var startTime = new Date().getTime();
while (new Date().getTime() < startTime + 1000) {
value++;
}
alert(value);
</script>
</head>
<body>
</body>
</html>
'java,web study > 5주차 (7월 29일~8월 4일)' 카테고리의 다른 글
arguments - 기본적으로 사용가능한 인자 (0) | 2013.08.02 |
---|---|
function 정의 (0) | 2013.08.02 |
for문 - 1~1000까지 존재하는 소수의 합 구하기 (0) | 2013.08.02 |
switch문 - Date() 클래스 이용 (0) | 2013.08.02 |
switch문 (0) | 2013.08.02 |
댓글