What is the correct syntax to declare a variable name with the initial value of 'John' using let?
name
let name = 'John'
let name: 'John';
let name <- 'John';
name let = 'John';