Notice
Recent Posts
Recent Comments
Link
«   2024/10   »
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
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter03 : 객체 본문

WEB.JS/06.객체_JS

chapter03 : 객체

GAWON 2023. 5. 19. 17:40
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
var car = {
model : "e-class",
drive : function(){
document.wirte("<h1>" + this.model + "</h1>")
}	
};
car.drive();

</script>
</head>
<body>

</body>
</html>

'WEB.JS > 06.객체_JS' 카테고리의 다른 글

chapter06 : 생성자함수  (0) 2023.05.19
chapter05 : 객체  (0) 2023.05.19
chapter04 : 객체  (0) 2023.05.19
chapter02 : 객체  (0) 2023.05.19
chapter01 : 객체  (0) 2023.05.19