como saber se existe um atributo em um objeto

Solutions on MaxInterview for como saber se existe um atributo em um objeto by the best coders in the world

showing results for - "como saber se existe um atributo em um objeto"
Martina
26 Apr 2019
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