1
<html>
<head>
<title>高数高级写法</title>
<script>
function square(x){return x * x};
var f = function(x){return x * x};
alert(f(5));
</script>
</head>
</html>
2
<html>
<head>
<title>高数高级写法</title>
<script>
var f = function square(x){
alert("***");
alert(square);
return x * x;
};
alert(f(5));
</script>
</head>
</html>
结果:
***
f = function square(x){
alert("***");
alert(square);
return x * x;
};
25
3.函数调用
<html>
<head>
<title>高数高级写法</title>
<script>
function setValue(x){return x + 10};
var f = function square(x){
return setValue(x) * setValue(x);
};
alert(f(5));
</script>
</head>
</html>