Filter
Exclude
Time range
-
Near
29 Dec 2019
While cool... quite hard to parse. Use fancy fancy destructuring sparingly #jsProTips
const o = {a: {b: 'hi'}} Want to get both `a` and `b` as variables? You totally can do this in one line of destructuring. const {a, a: {b}} = o Pretty neat!
5
JS ProTip: if you run jshint on batman.js it complains about missing parens. #JSProTips
1
2
4
JS Protip: if jshint returns Unmatched '{' This means the { is of exceptionally high quality. You should be proud. #jsprotips
2
3
JS ProTip: prefix your npm modules with 'node' to distinguish them from all the Perl modules on npm. #jsprotips
2
7
14
JS ProTip: reclaim 8 weeks of your life with: var log = console.log.bind(console); #jsprotips
1
1