"> 07-07_Math "> 07-07_Math ">
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>07-07_Math</title>
<script type="text/javascript">
	/*
		# Math.min()
		- 가장 작은 수를 반환.
		
		# Math.max()
		- 가장 큰 수를 반환.
	*/
	console.log(Math.min(4,2,8,9,5));
	console.log(Math.min(4,'2',8,9,5));
	console.log('');
	
	console.log(Math.max(4,2,8,9,5));
	console.log('');
	
	/*
		# Math.random()
		- 0.0 ~ 1.0 사이의 랜덤값 생성.
	*/
	console.log(Math.random());
	console.log('');
	
	/*
		# Math.round()
		- 소수점 첫째자리에서 반올림.
	*/
	console.log(Math.round(12.34));
	console.log(Math.round(12.56));
	console.log('');
	
	/*
		# Math.floor()
		- 소수점자리 절삭.
	*/
	console.log(Math.floor(12.34));
	console.log(Math.floor(12.56));
	console.log(Math.floor(-3.4));
	console.log('');
	
	let ra = Math.random();
	console.log(Math.floor(ra * 4));
	console.log('');
	
	for(let i=0; i<5; i++){
		let data = Math.random();
		console.log(Math.floor(data * 5) + 1);
	}
</script>
</head>
<body>

</body>
</html>