GitHub - Nakatsubo/dev-Vuejs: This Repository is Studies for...
// varはブロック外からアクセスできる { var x = 1 } console.log(x) // => 1 // let, constはブロックスコープなので、ブロック外からアクセスできない { let x = 1 const y = 0 } console.log(x) // => Uncaught ReferenceError: x is not defined console.log(y) // =>...