Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 오라클
- 태그를 입력해 주세요.
- 2NE1
- 검색
- 한글
- html
- javascript
- 미라지
- 이클립스
- oracle not in
- Modeling
- input box
- oracle not exists
- java
- Oracle
- Download
- DATABASE
- jquery
- error
- jqeury
- iTunes
- update
- 다운로드
- M480
- eclipse
- SELECT UPDATE
- 개발자
- 설치
- 10g
- 링크
Archives
- Today
- Total
not set
javascript 증감 연산 기본 본문
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<title> new document </title>
<script language="javascript">
<!--
function test(){
var number = 10;
alert(number++);
alert(++number);
alert(number--);
alert(--number);
}
-->
</script>
</head>
<body onload="test();">
</body>
</html>
위의 코드를 실행 해 보면 10,12,12,10이 출력된다.
'javascript > javascript' 카테고리의 다른 글
javascript 실행순서 (0) | 2013.08.07 |
---|---|
javascript 객체와 반복문 (0) | 2012.01.17 |