Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 198 Bytes

File metadata and controls

12 lines (7 loc) · 198 Bytes

底下的程式碼中,每一行都代表著課題列表中的一項。

let admin, name; // 可以一次宣告兩個變數

name = "John";

admin = name;

alert( admin ); // "John"