learning foreach - #177
Open
bwhite06 wants to merge 5 commits into
Open
Conversation
TERR1E
reviewed
Jun 27, 2018
TERR1E
left a comment
There was a problem hiding this comment.
You are getting there - keep it up!
Here are some helpful links you can check out:
https://codeburst.io/javascript-map-vs-foreach-f38111822c0f
| fullName.push(i.first_name); | ||
| fullName.push(i.last_name); | ||
|
|
||
| }); |
There was a problem hiding this comment.
You did not have to put .forEach inside a function - just needed to use .forEach with a function to push first_name and last_name to fullName array
There was a problem hiding this comment.
For your push you can also use this syntax to combine the two. variable.push(param.property + " " + param.property);
| fullName.push(i.last_name); | ||
|
|
||
| }); | ||
| JSON.stringify(fullName); |
There was a problem hiding this comment.
You can just use a console.log which you used in line 60.
|
|
||
| let ticketPriceTotal = 0; | ||
| let result=[]; | ||
| for (var i = 0; i < runners.length; i++) { |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.