Skip to content

Ahmed Belhadj - JavaScript #89

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Ahmed Belhadj - JavaScript
Created an object for each person in the company list.
  • Loading branch information
ahmed-belhadj committed May 21, 2018
commit d624e8aa40a335ff11d7c5fa1ef6e5931cd9bce7
31 changes: 30 additions & 1 deletion assignments/objects.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,36 @@ let example = {
}

// Write your intern objects here:

const mitzi = {
"id": 1,
"email": "mmelloy0@psu.edu",
"first name": "Mitzi",
"gender": "F"
}
const kennan = {
"id": 2,
"email": "kdiben1@tinypic.com",
"first name": "Kennan",
"gender": "M"
}
const keven = {
"id": 3,
"email": "kmummery2@wikimedia.org",
"first name": "Keven",
"gender": "M"
}
const gannie = {
"id": 4,
"email": "gmartinson3@illinois.edu",
"first name": "Gannie",
"gender": "M"
}
const antonietta = {
"id": 5,
"email": "adaine5@samsung.com",
"first name": "Antonietta",
"gender": "F"
}

// ==== Challenge 2: Reading Object Data ====
// Once your objects are created, log out the following requests from HR into the console:
Expand Down