const me = {
first_name: "Santos",
age: new Date().getFullYear() - 2007,
education: ["Informatica (BSc)", "University of Amsterdam"]
}
const {first_name, age, education} = me
function greeting(name, age, education) {
console.log(`Hi, I'm ${name} and I'm ${age} years old. Currently I'm studying ${education[0]} at the ${education[1]}. It's nice to meet you!`)
}
greeting(first_name, age, education)
////
let my_stack = ['typescript', 'react', 'python', 'c', 'javascript', 'php', 'laravel', 'sql', 'html', 'scss', 'css'];
console.log(`This is my stack: ${my_stack}`);Hi, I'm Santos and I'm 19 years old. Currently I'm studying Informatica (BSc) at the University of Amsterdam. It's nice to meet you!
This is my stack: typescript, react, python, c, javascript, php, laravel, sql, html, scss, css

