1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[
{
name: { first: 'Alice', last: 'Smith' },
age: 30,
contact: { email: 'alice@example.com' },
},
{
name: { first: 'Bob', last: 'Jones' },
age: 25,
contact: { phone: '555-123-4567' },
},
{
name: { first: 'Carol', last: 'White' },
age: 42,
contact: { email: 'carol@example.com', phone: '123-456-7890' },
},
]
|