let name = "John"; let age = 25; let isPatient = true; let conditions = ["diabetes", "cataracts", "hyperlipidaemia"];
let age = 25; let ageInYears = age + " years"; console.log(ageInYears); // Output: "25 years"