일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 하루 한마디 영어
- 안드로이드 개발 2.0 강좌
- 인기있는 블로그 만들기
- 안드로이드 2.0 개발
- 구글 안드로이드
- 구글안드로이드
- 안드로이드폰
- SKY 시리우스
- 안드로이드2.0개발
- 안드로이드 개발 강좌
- 스카이 안드로이드폰 시리우스
- android
- 안드로이드 개발 2.0
- 아이폰 배경화면
- 하루한마디영어
- objective-c
- 안드로이드2.0
- MapView
- 영어
- 안드로이드 개발
- 안드로이드
- 스마트폰 배경화면
- 구글 안드로이드 개발
- 안드로이드개발
- sky 시리우스폰
- 안드로이드 배경화면
- 스카이 안드로이드폰 시리우스 K양 동영상
- 안드로이드 바탕화면
- 아이폰 바탕화면
- Form Stuff
- Today
- Total
moozi
3/9 오전 자바스크립트 본문
<!doctype html>
<html>
<head>
<script type="text/javascript">
var result;
var i=7;
result=i++;
document.write(result);
document.write("<br/>");
i=7;
result=++i;
document.write(result);
document.write("<br/>");
var a=1;
var b=2;
a/=b; // a=a/b;
document.write(a);
document.write("<br/>");
var cars=["volvo","bmw","hyundai"];
document.write(cars[2]);
document.write("<br/>");
var mobile=new Array();
mobile[0]="apple";
mobile[1]="samsung";
mobile[2]="LG";
document.write(mobile[0]);
/* 객체 */
var hgd={ firstName:"gildong",
lastName:"hong",
age:25,
eyeColor:"blue",
/* 메서드 */
fullName:function(){
var fullName=this.firstName+" "+this.lastName; document.write(fullName);
}
}
document.write("<br/>");
document.write(hgd.firstName);
document.write(hgd.lastName);
document.write(hgd.age);
document.write(hgd.eyeColor);
hgd.fullName();
var lss={
firstName:"순신",
lastName:"이",
age:30,
eyeColor:"brown"
}
document.write("<br/>");
document.write(lss.firstName);
document.write(lss.lastName);
document.write(lss.age);
document.write(lss.eyeColor);
/* 덧셈함수 */
function add(a,b){
return a+b;
}
/*
함수가 호출되면 실행후 호출한 곳으로 되돌아 온다.
리턴값도 호출한 곳으로 넘어옴.
*/
var result2=add(10,20);//함수호출.리턴값 있는 경우
document.write("<p>"+result2+"</p>");
/* 뺄셈함수 */
function sub(a,b){
var result=a-b;
document.write("<p>"+result+"</p>");
}
sub(10,20);//함수호출.리턴값 없는 경우
</script>
</head>
<body>
</body>
</html>
'TIS_2016 > HTML5_1기' 카테고리의 다른 글
자바스크립트 연습문제1 (0) | 2016.03.09 |
---|---|
3/9 오후 자바스크립트 (0) | 2016.03.09 |
3/8 자바스크립트 홀수짝수 체크 (0) | 2016.03.08 |
3/8 레이아웃 연습 파일 (0) | 2016.03.08 |
3/7 안랩사이트 데모 소스 (1) | 2016.03.07 |