fm-snippets
fm-snippets copied to clipboard
Code snippets for course annotations.
Hello There, First of all, what a great course JavaScript Hard Pats is 👍 . Because I wasn't able to find someone to do pair programming with I have created...
Hey! In the solution [this line](https://github.com/FrontendMasters/fm-snippets/blob/main/javascript-hard-parts-v2/async.js#L174C1-L174C77) is ```javascript setTimeout(function() { console.log(giveHiSometimes()); }, 4000); // -> 'hi' ``` whilst in the original [course task file](http://csbin.io/async) it's ```javascript setTimeout(function() { console.log(giveHiSometimes()); },...
The solution has a bug when sub-arrays contain duplicate elements such as [5, 10, 15, 15] or [15, 88, 88, 1, 5, 7]. The filter is incapable to eliminate the...