What is the result of the following code?
let age = 25;
let message;
if (age >= 18 && age <= 35) {
message = 'Young adult';
}
console.log(message);
What is the result of the following code?
let age = 25;
let message;
if (age >= 18 && age <= 35) {
message = 'Young adult';
}
console.log(message);