ótima aula, porém acabei ficando com uma pulga atrás da orelha...
console.log(`the first client's called: ${clients.name}, his age are: ${clients.age}, the 3 firsts numbers of his cpf are: ${clients.cpf.substring(0, 3)} and the 2 firts words in his email are: ${clients.email.substring(0, 19)}. `);
E se caso eu queira selecionar apenas as 3 primeiras palavras do valor com colchetes igual no cpf.substring console.log acima? Como seria?
console.log(`the first client's called: ${clients["name"]}, his age are: ${clients["age"]}, the 3 firsts numbers of his cpf are: ${clients.cpf.substring(0, 3)} and the 2 firts words in his email are: ${clients.email.substring(0, 19)}. `);