I'm working in Visual Studio Code for javascript. I'm following along in an assignment and I'm getting the error 'name' is deprecated ts(6385)
. I'm not sure why it won't run after I've declared the variable?
let name = 'John'
let score = 103
console.log(name)
I found a similar question here but that person defined their variable twice. Mine is only defined once.