+ 2
JavaScript Code Styling/Best Practices?
For larger Javascript projects, is there any sort of styling or general best practices that will help keep everything more manageable?
1 Answer
+ 1
Utilize functions to keep generalized ideas together and minimize global variables. Building on that notion of similar ideas, make modules of code to group like code into their own pages/files.