자바스크립트는 객체 기반언어입니다.
자신의 객체를 정의하고, 자신의 변수유형을 만들 수 있습니다.
물론 고급 영역에 속하기 때문에 좀 더 공부가 필요합니다.
나중에 더 많이 다루도록 하겠습니다.
property는 오브젝트에 할당되는 값입니다.
예제
<!DOCTYPE html>
<head>
<title> New Document </title>
</head>
<body>
<script type="text/javascript">
var txt="Hello World!";
document.write(txt.length);
</script>
</body>
</html>
method는 오브젝트를 수행하는 액션입니다.
예제
<!DOCTYPE html>
<head>
<title> New Document </title>
</head>
<body>
<script type="text/javascript">
var str="Hello world!";
document.write(str.toUpperCase());
</script>
</body>
</html>
'WEB_TECH > javascript' 카테고리의 다른 글
날짜 시간 관련 객체 (0) | 2012.10.24 |
---|---|
자바스크립트 디버깅 (0) | 2012.10.18 |
String객체 (0) | 2012.09.13 |
Try...Catch 구문 (0) | 2012.08.17 |
이벤트 (0) | 2012.08.17 |
자바스크립트 함수 Function (0) | 2012.08.17 |
pop up boxes (0) | 2012.08.17 |
반복문 (0) | 2012.08.17 |
조건문 (0) | 2012.08.17 |
연산자 (0) | 2012.08.17 |