note

메서드의 함수화 / Math.max 본문

JavaScript/기본

메서드의 함수화 / Math.max

투한 2012. 3. 15. 10:13








<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script>
	//변수를 선언합니다.
	var findMax = Math.max;
	
	//출력합니다
	alert(findMax(52,273,103,57,32));
</script>
</head>
<body>

</body>
</html>


Math.max() 메서드는 최대값을 나타내는것을 알 수 있다