close

 

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<script type="text/javascript">
		var jerry={
			height:177,
			weight:65,
			bmi:function(){
				return this.weight/((this.height/100)*(this.height/100));
			}
		};
		document.write(jerry.bmi());
	</script>
</body>
</html>

 

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Jerry 的頭像
    Jerry

    Bug倉庫 // 程式日記

    Jerry 發表在 痞客邦 留言(0) 人氣()