Variables
大多時候應用 JavaScript 需要資料,像是購物網站需要被售出的貨物、購物車、付款;聊天室需要使用者、訊息、圖片等等,變數就是用來儲存需要的資料。
A variable
let message;message = 'Hello'; // store the stringlet message = 'Hello!'; // define the variable and assign the value
alert(message); // Hello!let user = 'John', age = 25, message = 'Hello';
let user = 'John'; // seperate define
let age = 25;
let message = 'Hello';
let user = 'John', // another style
age = 25,
message = 'Hello';
let user = 'John' // comma first
, age = 25
, message = 'Hello';A real-life analogy
Variable naming
Constants
Name things right
Last updated