There was an error while loading. Please reload this page.
1 parent 58ebcb3 commit 6756387Copy full SHA for 6756387
1 file changed
1-js/06-advanced-functions/01-recursion/article.md
@@ -160,7 +160,7 @@ alert( pow(2, 3) );
160
161
为了计算 `x * pow(x, n - 1)`,我们需要使用带有新参数的新的 `pow` 子调用 `pow(2, 2)`。
162
163
-### pow(2, 2)
+### pow(2, 2)
164
165
为了执行嵌套调用,JavaScript 会在 **执行上下文堆栈** 中记住当前的执行上下文。
166
0 commit comments