Declare variables with let
- let
let x = 19
let y = 23
let res = x + y
console.log(res) // 42
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
let x = 19
let y = 23
let res = x + y
console.log(res) // 42