js函数 找出较大的值
Posted 张钊z
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js函数 找出较大的值相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<script type="text/javascript">
var res=max(11,12);
alert("较大的值: "+res);
function max(m,n){
if(m>n){
return m;
}else{
return n;
}
}
</script>
<body>
</body>
</html>
以上是关于js函数 找出较大的值的主要内容,如果未能解决你的问题,请参考以下文章
如何将 .then() 中的值从 Node.js 模块返回到服务器文件?