Hello JavaScript
Before we start, I highly recommend you try the code samples yourself as you read the tutorials. Your browsers developer tools can be accessed using the following shortcuts. The console tab is where...
View ArticleBasic Syntax
Basic code that is good to know. How to write a comment Comments are just notes to yourself and future readers of the code. There are two styles but I would stick with single line. Most editors allow...
View ArticleControlling the flow
Code that does the same thing every time is not very useful. It only needs to be ran once and then you can write down the results and never use it again. Most code makes some decisions based on input...
View ArticleHelpful links to get started with JavaScript
Good C# Habits Can Encourage Bad JavaScript Habits: http://tv.devexpress.com/#JavaScriptHabits Good place to start. Video focused on helping C# folks transition to JavaScript. If you prefer to read...
View Article