Skip to content

test #46

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

Closed
Closed

Conversation

Kyricpandabackend
Copy link

comfort level: 3
completeness: 3

I marked where I got lost on the test

@comrade-kirby
Copy link

fundamentals #2: This question was asking you to use the foods array to find the last item
fundamentals #3: Your array is actually not empty, it contains 4 empty strings. An empty array is just [ ]
fundamentals #5: So close! You're missing quotes around your values (they're strings!)
var instructor = {
class: 'WDI',
subject: 'js',
style: 'comedic'
}
HOF #1: This question was asking you to use the '.map()' method on the people array

OOJS #1: This question is related to 'classes' in javascript. A class uses the class keyword and looks like this:
class Person {
constructor (name) {
this.name = name
this.friends = []
}
addFriend (friend) {
return this.friends.push(friend)
}
}

@0xZakk 0xZakk closed this Feb 12, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants