웹마스터 팁

Part1-2(2장). 자바스크립트연산자1
(산술, 대입, 증감, 비교연산자)

 

 

 

1. 산술연산자

덧셈 +
res=20+10
res값=30

뺄셈 -
res=20-10
res값=10

곱셈 *
res=20*10
res값=200

나눗셈 /
res=20/10
res값=2

나머지 %
res=20%10
res값=0

 


Javascript2-1.html
---------------------------------------------------------------
<html>
<head><title> </title>
<script language="javascript">
<!--
document.write("자바스크립트예제"+"<br>");
res = 20 + 10;
document.write(res+"<br>");
res = 20 -10;
document.write(res+"<br>");
res = 20 * 10;
document.write(res+"<br>");
res = 20 / 10;
document.write(res+"<br>");
res = 20 % 10;
document.write(res+"<br>");
//-->
</script>
</head>
<body>
</body>
</html>
---------------------------------------------------------------

 

2. 대입연산자

덧셈대입 +=
뺄셈대입 -=
곱셈대입 *=
나눗셈대입 /=
나머지대입 %=

 

Javascript2-2.html
---------------------------------------------------------------
<html>
<head><title> </title>
<script language="javascript">
<!—
res = 20;
document.write("자바스크립트예제"+"<br>");
res +=10;
document.write(res+"<br>");
res -=10;
document.write(res+"<br>");
res *=10;
document.write(res+"<br>");
res /=10;
document.write(res+"<br>");
res %=10;
document.write(res+"<br>");
//-->
</script>
</head>
<body>
</body>
</html>
---------------------------------------------------------------

 


3. 증감연산자
●전위연산자
피연산자의앞쪽에위치한다
●후위연산자
피연산자의뒤쪽에위치한다
●종류: ++ , --
(예) res++,res--, ++res,--res

 

Javascript2-3.html
---------------------------------------------------------------

<html>
<head><title> </title>
<script language="javascript">
<!--
a = 10;
b = 20;
c = 3;
document.write("자바스크립트예제"+"<br>");
document.write(++a +"<br>");
document.write(a++ +"<br>");
document.write(c++ +"<br>");
document.write(++a + b++ +"<br>");
document.write(++a + ++b +"<br>");
//-->
</script>
</head>
<body>
</body>
</html>

---------------------------------------------------------------

[실행결과]

자바스크립트예제
11
11
3
33
36

 

4.비교연산자

작다 <
크다 >
작거나같다 <=
크거나같다 >=
같다 ==
같지않다 !=


Javascript2-4.html
---------------------------------------------------------------
<html>
<head><title> </title>
<script language="javascript">
<!--
a = 10;
b = 5;
c = a > b;
document.write("자바스크립트예제"+"<br>");
document.write(c +"<br>");
c = a < b;
document.write(c +"<br>");
c = a == b;
document.write(c +"<br>");
c = a != b;
document.write(c +"<br>");
//-->
</script>
</head>
<body>
</body>
</html>
---------------------------------------------------------------

[실행결과]

자바스크립트 예제
true
true
false
false
true

태그 연관 글
  1. [2015/10/27] 묻고답하기 모바일에서 이런 갤러리박스 오픈소스 없을까요.. by 제로보드신세계잼 *1
  2. [2015/08/10] 묻고답하기 javascript 질문드립니다. by ㅋㅋ13c65
  3. [2014/04/01] 웹마스터 팁 [javascript]기초강좌 | 01 자바스크립트개념 by hiwebs
  4. [2014/02/14] 웹마스터 팁 GNB 메뉴를 쉽게 만드는 jQuery plugin by 김개발 *2
  5. [2011/06/30] 묻고답하기 textyle 관련 질문입니다. by zi132
제목 글쓴이 날짜
Windows Server 이벤트 로그 정리하기 StyleRoot 2014.04.20
가비아에서 웹호스팅 관련 팁 [1] JerryKim 2014.04.19
해외 아이피 차단 방법입니다. [3] Flolida 2014.03.01
중국대륙 IP 차단방법 [5] 낮은자 2014.03.07
이전/다음 글버튼 출력 애드온의 버튼을 사이트 밖으로 빼봅시다..^^ [5] file 착한악마 2014.04.03
Windows IIS 에서 F5 연타 방지하기 (mod_evasive , limit_req) [3] file StyleRoot 2014.04.08
XE 업데이트후 갑자기 CSS/JS등이 403 오류가 날때 YJSoft 2014.04.16
<div>에 ajax html 넣기 [3] 웹빌드 2014.04.10
장비 침입 탐지 및 자동 ip 차단 프로그램 소개 [4] 고구마군 2014.04.09
NULL/XMAS 패킷 포트 스캐닝 방지 방안 고구마군 2014.04.12
여러가지 hover effect 모음 [1] 드래그홈 2014.03.26
이모티콘 스킨(?) 이모티콘 팝업 창을 개선합시다 [11] file socialskyo 2013.11.30
사용자에게 파일 내용을 뿌릴땐 fpassthru를 쓰자 [2] DynamicLaser 2014.03.23
관리자를 제외하고는 타회원의 회원정보 보기를 막는 방법 [1] sejin7940 2014.04.04
글쓰기를 클릭하면 띄워지는 테두리 없는 예쁜 팝업 띄우기 core. 1.7.4 [4] file 마음의빈자리 2014.02.11
모바일EX 사용시, 모바일 레벨아이콘 출력하기. [11] qwms 2014.03.29
slidesj 사용시 자동으로 다음 사진 넘길때 웹빌드 2014.04.02
코어 업데이트 후 회원가입 이름이 숫자(번호)로 뜨는 현상 수정 [1] 자대련 2014.04.01
[javascript] 기초강좌 | 02 산술, 대입, 증감, 비교연산자 hiwebs 2014.04.01
[javascript]기초강좌 | 01 자바스크립트개념 hiwebs 2014.04.01