forked from bloominstituteoftechnology/JavaScript-II
-
Notifications
You must be signed in to change notification settings - Fork 0
started javascript-II #1
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -56,28 +56,96 @@ const runners = [{"id":1,"first_name":"Charmain","last_name":"Seiler","email":"c | |||||
// ==== Challenge 1: Use .forEach() ==== | ||||||
// The event director needs both the first and last names of each runner for their running bibs. Combine both the first and last names into a new array called fullName. | ||||||
let fullName = []; | ||||||
console.log(fullName); | ||||||
runners.forEach(function(obj) { | ||||||
fullName.push([obj.first_name + obj.last_name]) | ||||||
return fullName; | ||||||
}) | ||||||
//console.log(fullName); | ||||||
|
||||||
|
||||||
// ==== Challenge 2: Use .map() ==== | ||||||
// The event director needs to have all the runner's first names converted to uppercase because the director BECAME DRUNK WITH POWER. Convert each first name into all caps and log the result | ||||||
let allCaps = []; | ||||||
console.log(allCaps); | ||||||
runners.map(function(obj) { | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. .map() returns an array, so you don't need to use "push()" here |
||||||
allCaps.push(obj.first_name.toUpperCase()); | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
}) | ||||||
//console.log(allCaps); | ||||||
|
||||||
// ==== Challenge 3: Use .filter() ==== | ||||||
// The large shirts won't be available for the event due to an ordering issue. Get a list of runners with large sized shirts so they can choose a different size. Return an array named largeShirts that contains information about the runners that have a shirt size of L and log the result | ||||||
let largeShirts = []; | ||||||
console.log(largeShirts); | ||||||
runners.filter(function(obj) { | ||||||
if (obj.shirt_size === "L") { | ||||||
largeShirts.push(obj) | ||||||
} | ||||||
return largeShirts; | ||||||
}) | ||||||
//console.log(largeShirts); | ||||||
|
||||||
// ==== Challenge 4: Use .reduce() ==== | ||||||
// The donations need to be tallied up and reported for tax purposes. Add up all the donations into a ticketPriceTotal array and log the result | ||||||
let ticketPriceTotal = []; | ||||||
console.log(ticketPriceTotal); | ||||||
|
||||||
let ticketPriceTotal = | ||||||
runners.reduce(function(total, runner) { | ||||||
return total + runner.donation | ||||||
},0) | ||||||
|
||||||
|
||||||
runners.reduce((total, runner) => { | ||||||
return total + runner.donation | ||||||
},0) | ||||||
|
||||||
|
||||||
|
||||||
//console.log(ticketPriceTotal) | ||||||
|
||||||
|
||||||
// ==== Challenge 5: Be Creative ==== | ||||||
// Now that you have used .forEach(), .map(), .filter(), and .reduce(). I want you to think of potential problems you could solve given the data set and the 5k fun run theme. Try to create and then solve 3 unique problems using one or many of the array methods listed above. | ||||||
|
||||||
// Problem 1 | ||||||
let companies = [] | ||||||
runners.forEach(function(obj) { | ||||||
companies.push(obj.company_name) | ||||||
return companies | ||||||
}) | ||||||
//console.log(companies) | ||||||
|
||||||
// Problem 2 | ||||||
|
||||||
// Problem 3 | ||||||
let correctEmail = [] | ||||||
runners.map(function(obj) { | ||||||
if (obj.email.split("@").length === 2) { | ||||||
correctEmail.push(obj.email) | ||||||
} | ||||||
return correctEmail; | ||||||
}) | ||||||
//console.log(correctEmail) | ||||||
|
||||||
// Problem 3 Made a shirt size counter | ||||||
|
||||||
|
||||||
|
||||||
|
||||||
let shirts = [] | ||||||
runners.forEach(function(obj) { | ||||||
shirts.push(obj.shirt_size) | ||||||
return shirts | ||||||
}) | ||||||
|
||||||
|
||||||
console.log(shirts) | ||||||
|
||||||
|
||||||
var countedShirts = shirts.reduce(function (allShirts, shirt) { | ||||||
if (shirt in allShirts) { | ||||||
allShirts[shirt]++; | ||||||
} | ||||||
else { | ||||||
allShirts[shirt] = 1; | ||||||
} | ||||||
return allShirts; | ||||||
}, {}); | ||||||
|
||||||
|
||||||
console.log(countedShirts) |
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
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is gonna look weird.. "LydiaThornton" vs "Lydia Thornton" for example