function sayHi() { console.log(name); console.log(age);...
const { firstName: myName } = { firstName: 'Lydia' }; console.log(firstName);
function checkAge(age) { if (age < 18) { const message = "Sorry, you're too young.";...