javascript
javascript copied to clipboard
JavaScript Quality Guidelines and Recommendations
Both have pros and cons. Function expression leads to better consistency (you cannot use function declaration for function composition, currying etc.), but it’s not hoisted (so it requires specific ordering...
Revisiting the guide a some of this stuff is primarily an opinion without substantial reasoning. Case in point is the recommendation to avoid ES6 `class`. For me the primary reason...
Just a dumping place for brainstorm. ### Standalone guides - Git, i.e. crash course, basic operations, [commit messages](http://chris.beams.io/posts/git-commit/), pulling, rebasing, tools - Pull Requests - QA checks, code review -...
Guide recommends to avoid classes and prototypes but doesn’t have a separate section about object factories as a recommended way (though FP part about data/behaviour separation is close). I should...