-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
javascript/20210116/1040518332/ #28
Comments
第十題的解釋怪怪的,會跳a is not a function並不是因為記憶體被釋放掉,而是因為function b沒有回傳一個function給a導致的。程式改成下面就可以執行了function a(a) { function b(b) { function c(c){ a(b(c)); |
function a(a) { function b(b) { function c(c){ a(b(c)); |
//我的意思是改成這個才對,抱歉前面不熟悉語法不小心發出留言 function b(b) { function c(c){ a(b(c)); |
@benjamin5252 非常感謝告知,後來回頭看一下這邊的解釋確實是有錯誤 |
JavaScript 核心觀念(46)-函式以及 This 的運作-函式以及 This 的運作 - 課後練習 | 是 Ray 不是 Array
接下來這一章節又來到課後練習。
https://israynotarray.com/javascript/20210116/1040518332/
The text was updated successfully, but these errors were encountered: