File tree Expand file tree Collapse file tree 8 files changed +8
-8
lines changed
basic_inheritance_with_objectcreate Expand file tree Collapse file tree 8 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ The order of the users should match the order of supplied user ids. Because this
3030* Do not use for/while loops (Array#forEach ok).
3131* The order of the results in ` done ` must be the same as they were specified in ` userIds ` .
3232* Users should be loaded in parallel i.e. the entire job should not take more than 1 second.
33- * Do not create any unecessary functions e.g. helpers.
33+ * Do not create any unnecessary functions e.g. helpers.
3434
3535## Hint
3636
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ duckCount(duck, notDuck) // 1
7171
7272* Do not use any for/while loops or Array#forEach.
7373* Do not create any counter/accumulator variables.
74- * Do not create any unecessary functions e.g. helpers.
74+ * Do not create any unnecessary functions e.g. helpers.
7575
7676## Hint
7777
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ console.log('Hello ' + joe) // 'Hello [BetterUser: Mr. Joe Smith]'
5151
5252* Don't call the User constructor unnecessarily!
5353* Don't use ` __proto__ `
54- * Do not create any unecessary functions e.g. helpers.
54+ * Do not create any unnecessary functions e.g. helpers.
5555
5656## Resources
5757
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ module.exports = doubleAll
2222
2323* Your solution should use Array.prototype.map()
2424* Do not use any for/while loops or Array.prototype.forEach.
25- * Do not create any unecessary functions e.g. helpers.
25+ * Do not create any unnecessary functions e.g. helpers.
2626
2727## Resources
2828
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ console.log(countWords(inputWords))
2424## Conditions
2525
2626* Do not use any for/while loops or Array#forEach.
27- * Do not create any unecessary functions e.g. helpers.
27+ * Do not create any unnecessary functions e.g. helpers.
2828
2929## Resources
3030
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ Try to perform as many operations as you can before the timeout fires!
99## Conditions
1010
1111* Do not use any for/while loops or Array#forEach.
12- * Do not create any unecessary functions e.g. helpers.
12+ * Do not create any unnecessary functions e.g. helpers.
1313
1414## Hints
1515
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ console.log(spy.count) // 3
2424## Conditions
2525
2626* Do not use any for/while loops or Array#forEach.
27- * Do not create any unecessary functions e.g. helpers.
27+ * Do not create any unnecessary functions e.g. helpers.
2828
2929## Hint
3030
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ Use the boilerplate code given to you below to get started. Most/all future exer
2727* https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Functions_and_function_scope
2828* https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Function/prototype
2929
30- ## Hints
30+ ## Hints
3131
3232* Don't overthink it, the code should be rather simple.
3333* It's ok to use a loop in your implementation, bonus points
You can’t perform that action at this time.
0 commit comments