alert("Welcome to my website");
let name = "Lua";
let idade = 25;
let numeroDeVendas = 50;
let saldoDisponivel = 1000;
let error = "Error! Fill all fields";
let mensagemDeErro = error;
let nome = prompt("Digit your name: ");
alert(nome);
console.log("Welcome", nome);
let year = prompt("Enter your age: ");
alert(year);
console.log("Your age:", year);
let yearNum = Number(year);
if (yearNum >= 18) {
console.log("Pode tirar a habilitação\nYou can take the license off");
} else {
console.log("Não pode tirar a habilitação\nYou can't take the license");
}