Я пытаюсь запустить этот код в vscode, но он показывает ошибка
Код:
let age = 6
// If 7 or under print message about child pricing
if (age <= 7) {
console.log('You will get a child discount!')
}
// If 65 or older print message about senior discount
if (age >= 65) {
console.log('You will get a senior discount!')
}