js 闭包案例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
function square(num1,num2){
function squares(x){
return x*x;
}
return squares(num1)+squares(num2);
};
console.log(square(3,6)); // 3的平方加6的平方

</script>
</body>
</html>

js 闭包案例


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<script>
function one(){
let name = "全易";
function two(){
return name; // 此时two()含有了全易值
}
return two(); // 此时one()含有了全易值
};

console.log(one());

</script>
</body>
</html>

js 闭包案例


js 闭包案例
https://github.com/chergn/chergn.github.io/dd2ea48f0c40/
作者
全易
发布于
2024年3月28日
许可协议