let is used to bind values to names, which is similar to assigning values to variables in other languages.
let
let greeting = "hello!" let score = 10 let newScore = 10 + score
Let Binding