Variables
Tue Jan 18 2022 18:57:53 GMT+0000 (Coordinated Universal Time)
Saved by
@shinesheray
let greeting = "Hello"; // 'let' means the variable can be reassigned
const question = "How are you?"; // 'const' means the variable cannot be reassigned
content_copyCOPY
Comments