尚學堂的課程的資料他的官網上面是有的~ 閉包可以解決在外部讀到區域性變數的需求1)儲存狀態
2)讀取區域性變數|||-begin
1function
demo()9}
10var hello_1=demo()();
11 console.log(hello_1);//
輸出 "hello"
|||-end
在外部通過閉包獲取函式中變數的值
1doctype html
>
2<
html
lang
="en"
dir="ltr"
>
3<
head
>
4<
meta
charset
="utf-8"
>
5<
title
>
title
>
6head
>
7<
body
>89
10<
script
>
1112
/*13
作用域14
js:函式級作用域
15var關鍵字一定要寫
16*/
1718
function
demo01()
2223
demo01();
24//
console.log(num); //報錯
2526
27function
demo()35}
36var
hello_1
=demo()();
37console.log(hello_1);
//輸出 "hello"
3839
script
>
4041
body
>
42html
>
python之父北京尚學堂 北京尚學堂 主頁
你輸入的郵件位址曾經通過 啟用了本站帳號,請使用 帳號直接登入。課程習題 提示請選擇乙個答案 提交檢視正確答案 下一題 0 data index data name 課程進度 開課時間待定 開課 進行到第 周 已結束 分 分 檢視證書 開啟奮鬥模式 已開啟奮鬥模式 申請證書 已申請證書,成績合格即頒...
尚學堂 oracle筆記
sql plus是oracle的乙個客戶端 cmd sqlplus 開啟瀏覽器http localhost 5560 isqlplus cmd cd c oracle product 10.2.0 db 1 bin sqlplus alter user scott account c oracle ...
遞迴 尚學堂資料筆記
遞迴 在方法內部呼叫方法本身。eg 斐波那契數列 後乙個數字等於前兩個數之和 public class testelse 使用迴圈的方式完實現以上功能 public class fab public static void main string args system.out.println f ...