Skip to content

Instantly share code, notes, and snippets.

View dtinianow's full-sized avatar

David Tinianow dtinianow

View GitHub Profile

##Word Count My code: here

  • Responder #1 (here) - This approach was pretty similar to mine. They used the same exact technique to initially reformat the string as an array. Instead of a using a for loop with if/else conditionals to create the word list object, they used reduce and a ternary statement to condense the code into just a few lines.

  • Responder #2 (here) - This response used the match method with whitespace as an argument to get an array of all words. They changed each word to lower case inside of a for loop. Their conditions in the loop were basically the same as mine, except they were each condition was put on only one line. They explicitly checked in a condition was undefined, which could be implied and is not neccesary to write.

  • Responder #3 ([here](http://exercism.io/submissions/d99b45a0

Length Points Week
15 minutes 5 Week 1

ES6 Research

Throughout the module (and your journey to Google enlightenment while working on IdeaBox2.0) you may notice a few different ways that JavaScript code is being written.

That might have something to do with something called ES6 and ES5

Length Points Week
20 minutes 10 Week 2

The Concept of Require - Research

When you start working with WebPack for GameTime, you'll notice that you can't just define a variable in one file and find it in another as easily as you can in Rails.

Deliverable