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>