# JS 環境與變數環境 ## 解答流程(需提供一小時的志工服務) * 加入 Slack 群組,尋找「JS 學徒特訓班」 * 任選三題來畫圖解答,並自己做一道題目,共釋出四題讓頻道志工檢視 * 頻道志工告知您回答正確後,換你擔任志工來回覆學員問題,讓自己成為知識輸出者,觀念更加透徹 ## 第 1 題 ``` // 1.產生 console.log 從上到下的值為? // 2.出現幾個變數、型別、記憶體物件? let a ; a = 1; a = "hello"; console.log(a) ``` ## 第 2 題 ``` // 1.產生 console.log 從上到下的值為? // 2.出現幾個變數、型別、記憶體物件? let b = 3 ; let c = 4; console.log(d) let d = b+c; console.log(d) ``` ## 第 3 題 ``` // 1.產生 console.log 從上到下的值為? // 2.出現幾個變數、型別、記憶體物件? console.log(e) var e; e = 5; e = "hello" e = true; console.log(e) ```
×
Sign in
Email
Password
Forgot password
or
Sign in via Google
Sign in via Facebook
Sign in via X(Twitter)
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
Continue with a different method
New to HackMD?
Sign up
By signing in, you agree to our
terms of service
.