September 2015
Beginner to intermediate
230 pages
4h 47m
English
If you know the basics of JavaScript, you can skip this section. Here is a quick overview of JavaScript:
var myAge = 31;
// this is an inline comment /* this is a multi-line comment */
if (myAge > 29) {
console.log("I am not in my twenties anymore!");
} else {
console.log("I am still in my twenties!");
}function nameOfMyFunction(argument1, argument2) {
console.log(argument1, argument2);
}nameOfMyFunction("First Value", "Second Value");Read now
Unlock full access