capture object attribute

Solutions on MaxInterview for capture object attribute by the best coders in the world

showing results for - "capture object attribute"
Giovanni
22 Jun 2020
1const json = {
2    nome: "nome",
3    sobrenome: "sobrenome",
4    idade: "idade",
5    endereco: "endereco",
6    empresa: "empresa",
7    telefones: [
8        {
9            "residencial": "residencial"
10        },
11        {
12            "celular": "celular"
13        }
14    ]
15}
16
17console.log(Object.keys(json))
18// ["nome", "sobrenome", "idade", "endereco", "empresa", "telefones"]