amostra de código JS
let data = {
name:"Brendan Eich",
inventor :"Javascrpt"
}
console.log(`The name of his is ${data.name}. He is the inventor of ${data.inventor} programming language`);
Grumpy Guanaco