coding-styles icon indicating copy to clipboard operation
coding-styles copied to clipboard

My coding styles.

Results 2 coding-styles issues
Sort by recently updated
recently updated
newest added

I have been using tabs till now for all javascript development. But recently I've seen this ES6 style guide which mentions **_"Tabs are evil. Don't use them!"_** at least three...

Doesn't work (throws unexpected token): ``` js app.use(*g() { this.body = 'hello world'; }); ``` Works: ``` js app.use(function *() { this.body = 'hello world'; }); ``` Any insight as...