Jess Harrison Javascript-II#259
Open
jessharrison83 wants to merge 2 commits intobloominstituteoftechnology:masterfrom
Open
Jess Harrison Javascript-II#259jessharrison83 wants to merge 2 commits intobloominstituteoftechnology:masterfrom
jessharrison83 wants to merge 2 commits intobloominstituteoftechnology:masterfrom
Conversation
array-methods.js and callbacks.js completed
completed closure.js with stretch goal, function-conversion.js
clarakosi
reviewed
Aug 22, 2018
clarakosi
left a comment
There was a problem hiding this comment.
Great job, Jess! All of your code looks great 💯
| let largeShirts = []; | ||
| const sizeFiltered = function(___, index, arr) { | ||
| if (arr[index].shirt_size === "L" || arr[index].shirt_size === 'l') { | ||
| return true; |
| firstItem(items, itemZero); | ||
|
|
||
| function sayLength(length) { | ||
| console.log(length); |
There was a problem hiding this comment.
I love that you wrote your own cb functions 👍
| // Return an object that has two methods called `increment` and `decrement`. | ||
| // `increment` should increment a counter variable in closure scope and return it. | ||
| // `decrement` should decrement the counter variable and return it. | ||
| let count = 0; |
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.
Initial commit - array-methods.js and callbacks.js completed
@clarakosi