Forum Discussion
jeffrey_crowley
12 years agoContributor
I would suggest JScript also because it is so similar to javaScript and there are TONS of resources for javaScript. Some references you may have already or will likely want to bookmark...
1. Mozilla Developer Network (MDN) is a great reference for quick look ups/reference material and also guides. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide
2. If you are trying to write something and get stuck or have questions, obviously you can google for answers. I find a lot (most?) of my better answers on Stack Overflow. http://stackoverflow.com/
3. After you get some code written, send it through JSHint to find the typos and low hanging fruit. http://www.jshint.com/
4. Once the code is "well written", then you send it through JSBeautifier to make it easier to read. There are some customizable settings to suit most preferences. http://jsbeautifier.org/
1. Mozilla Developer Network (MDN) is a great reference for quick look ups/reference material and also guides. https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide
2. If you are trying to write something and get stuck or have questions, obviously you can google for answers. I find a lot (most?) of my better answers on Stack Overflow. http://stackoverflow.com/
3. After you get some code written, send it through JSHint to find the typos and low hanging fruit. http://www.jshint.com/
4. Once the code is "well written", then you send it through JSBeautifier to make it easier to read. There are some customizable settings to suit most preferences. http://jsbeautifier.org/