+ 4
master JavaScript tips
i completed JavaScript course here i seen some other tutorials but i can't do much with JavaScript but i really love to learn JavaScript i am looking for tips and tricks through which i can master JavaScript.....so please experts share your experience.
4 Answers
+ 4
Always structure your JavaScript in a logical order. Or it just gets messy
+ 3
thank you allâ€
+ 2
Always comment what a specified block of code does above said block of code. It makes for simpler debugging.
+ 2
I like to treat files as classes, I normally use a math.js file to store math related functions that I'm going to have to use at least twice. Helps to keep it organized and easier to read / debug.