topics
constant variabele
let variable
undefined
##const
値が変えられない変数
const name = "苔";
console.log(name);
//output:苔
##let
値の変更が可能
let color = "緑";
console.log(color);
//output:緑
##undefined
値の与えられていない変数に初期値として割り当てられる値
let whatIsThat;
//値はundefined
let a;
let b =undefined;
let c =123;
c=undefined;
//a,b,cの値は全てundefined