Last active
July 29, 2019 06:28
-
-
Save PrimeTimeTran/e3621e739778ee333de3a1f6e01f1a22 to your computer and use it in GitHub Desktop.
Elcapitan
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const people = [ | |
{ | |
id: 1, | |
firstName: "Loi", | |
lastName: "Tran", | |
age: 18, | |
favoriteColor: "red", | |
favoriteColors: ["red", "white", "blue"], | |
favoriteSingers: ["Mariah Carey", "Justin Bieber", "Britney Spears"], | |
nationality: "U.S.A.", | |
gender: "m", | |
zodiac: "Cancer", | |
jobTitle: "Instructor", | |
company: "CoderSchool", | |
}, | |
{ | |
id: 2, | |
firstName: "Quyen", | |
lastName: "Thai", | |
age: 23, | |
favoriteColor: "blue", | |
favoriteColors: ["blue", "white", "green"], | |
favoriteSingers: [], | |
nationality: "Vietnam.", | |
gender: "f", | |
zodiac: "Taurus", | |
jobTitle: "Student", | |
company: null, | |
}, | |
{ | |
id: 3, | |
firstName: "Shawn", | |
lastName: "Talvacchia", | |
age: 32, | |
favoriteColor: "Black, like my soul", | |
favoriteColors: ["red", "white", "blue"], | |
favoriteSingers: ["Romare", "Mount Kimbie", "Nicholas Jaar"], | |
nationality: "U.S.A.", | |
gender: "m", | |
zodiac: "Cancer", | |
jobTitle: "Student", | |
company: "CoderSchool", | |
}, | |
{ | |
id: 4, | |
firstName: "Phuong", | |
lastName: "Tran", | |
age: 27, | |
favoriteColor: "blue", | |
favoriteColors: ["blue", "pink", "green"], | |
favoriteSingers: ["Chris Young", "Bruno Mars", "Taylor Swift"], | |
nationality: "Vietnamese", | |
gender: "f", | |
zodiac: "Leo", | |
jobTitle: "student", | |
company: "CoderSchool", | |
}, | |
{ | |
id: 5, | |
firstName: "Mai", | |
lastName: "Hoang", | |
age: 29, | |
favoriteColor: "red", | |
favoriteColors: ["red", "white", "black"], | |
favoriteSingers: ["2pac", "Sia", "Johan Sebastian Von Bach"], | |
nationality: "Sweden", | |
gender: "f", | |
zodiac: "Pisces", | |
jobTitle: "Student", | |
company: "unemployed" | |
}, | |
{ | |
id: 6, | |
firstName: "Khuong", | |
lastName: "Huynh", | |
age: 18, | |
favoriteColor: "red", | |
favoriteColors: ["red", "green", "blue"], | |
favoriteSingers: ["Adele", "Celine Dion", "Tuan Ngoc"], | |
nationality: "Vietnam", | |
gender: "m", | |
zodiac: "aries", | |
jobTitle: "Student", | |
company: "CoderSchool" | |
}, | |
{ | |
id: 7, | |
firstName: "Thien", | |
lastName: "Hoang", | |
age: 28, | |
favoriteColor: "red", | |
favoriteColors: ["red", "white", "blue"], | |
favoriteSingers: ["Adele", "Nat King Cole", "Westlife"], | |
nationality: "Vietnam", | |
gender: "m", | |
zodiac: "Aries", | |
jobTitle: "Student", | |
company: "CoderSchool", | |
}, | |
{ | |
id: 8, | |
firstName: "Hang", | |
lastName: "Tran", | |
age: 29, | |
favoriteColor: "gray", | |
favoriteColors: ["gray", "navy", "maroon"], | |
favoriteSingers: ["Maroon5", "Linkin Park", "Eminem"], | |
nationality: "VN", | |
gender: "m", | |
zodiac: "Sagittarius", | |
jobTitle: "Studen", | |
company: "CoderSchool", | |
}, | |
{ | |
id: 9, | |
firstName: "Parsa", | |
lastName: "Taheri", | |
age: 19, | |
favoriteColor: "Purple", | |
favoriteColors: ["Green", "Blue", "Yellow"], | |
favoriteSingers: ["Shawn Mendes", "Lana Del Rey", "Eminem"], | |
nationality: "British", | |
gender: "M", | |
zodiac: "capricorn", | |
jobTitle: "Student", | |
company: "CoderSchool", | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment