1const user = {
2 name: "Sicrano",
3 age: 14
4}
5
6user.hasOwnProperty('name'); // Retorna true
7user.hasOwnProperty('age'); // Retorna true
8user.hasOwnProperty('gender'); // Retorna false
9user.hasOwnProperty('address'); // Retorna false
10