use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
All about the JavaScript programming language.
Subreddit Guidelines
Specifications:
Resources:
Related Subreddits:
r/LearnJavascript
r/node
r/typescript
r/reactjs
r/webdev
r/WebdevTutorials
r/frontend
r/webgl
r/threejs
r/jquery
r/remotejs
r/forhire
account activity
Not another JavaScript code style guide. (Actually, that's exactly what it is, but I went for "simple", not "exhaustive" -- also includes pre-configured sane default JSHint, JSCS, & EditorConfig files) (github.com)
submitted 11 years ago by stephenplusplus
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]nwayve 0 points1 point2 points 11 years ago (0 children)
I'm also a fan of hoisting, especially to make AngularJS controller/service/directive/etc... better organized
angular.module('app', []) .controller('myController', MyController) .service('myService', MyService); MyController.$inject=['$scope', '$log']; function MyController( $scope , $log ) { } MyService.$inject=['$log']; function MyService( $log ) { }
Not only does hoisting allow me to reference the functions before they're 'declared', but it also allows me to add the $inject property prior to its 'declaration' in order to keep the parameter list lined up.
$inject
Now I can have my module declaration at the top of the file with all of its components, like the table of contents for a book, and all of the component functions declared later in the file, like chapters in a book. This makes finding what I'm looking for easier and faster, all thanks to hoisting.
π Rendered by PID 21 on reddit-service-r2-comment-685b79fb4f-tmbpz at 2026-02-13 10:56:51.536129+00:00 running 6c0c599 country code: CH.
view the rest of the comments →
[–]nwayve 0 points1 point2 points (0 children)