javascript Ex7 (함수 vs 메서드 )

권원중·2023년 6월 8일
0

구디아카데미

목록 보기
21/23
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	// fun(); // 안됌
	
	// 함수 vs 메서드, this
	
	// 함수(전역에 만들어진 함수)
	let fun = function(){
		alert('hello');
	};
	
	fun();
	
	// 메서드(객체안에 만들어지는 함수)
	let obj = {meth : function(){
			alert('method : hello');	
			console.log(this);
		}
	}
	obj.meth();
	
</script>
</head>
<body>
	<h1> 함수  vs 메서드, this 키워드</h1>
</body>
</html>

0개의 댓글