Skip to content

Trai Compton: PR Created - #451

Open
TraiLynne wants to merge 20 commits into
bloominstituteoftechnology:masterfrom
TraiLynne:master
Open

Trai Compton: PR Created#451
TraiLynne wants to merge 20 commits into
bloominstituteoftechnology:masterfrom
TraiLynne:master

Conversation

@TraiLynne

Copy link
Copy Markdown

No description provided.

@szincone szincone left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Overall, very good stretch. Code is clean and easy to read.

Comment thread README.md
@@ -5,44 +5,44 @@ With some basic JavaScript principles in hand, we can now expand our skills out

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Fantastic commit messages as usual!

let largeShirts = [];
let largeShirts = runners.filter((value) => {
return value.shirt_size == 'L';
})

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I can't tell if you're using an autoformatter or not (an extension like Prettier), because you're missing the semicolon here and you use it at the end of the rest of your lines. If you're not using an autoformatter it could save you time, if you are using an autoformatter you can add the setting to your user settings to 'formatOnSave' and it will format every time you save it.

Comment thread assignments/callbacks.js
function contains(item, list, cb) {
// contains checks if an item is present inside of the given array/list.
// Pass true to the callback if it is, otherwise pass false.
return cb(list.includes(item) ? true : false);

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  • Good use of your array methods (includes) and good use of ternary operator.

// ==== 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 = [];
let largeShirts = runners.filter((value) => {

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Parentheses are optional when there's only one parameter name. (value) => { could be value => {

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.

2 participants