Console
console.log('Hello world!');
console.warn('hello %s', 'World');
console.error(new Error('Oops!'));Numbers
let amount = 6; let price = 4.99;Variables
let x = null;
let name = "Tammy";
const found = false;
var a; // => undefined
let single = 'Wheres my bandit hat?';
let double = "Wheres my bandit hat?";
single.length // => 21 Arithmetic Operators
5 + 5 = 10 // Addition 10 - 5 = 5 // Subtraction 5 * 10 = 50 // Multiplication 10 / 5 = 2 // Division 10 % 5 = 0 // Modulo
Comments
// This line will denote a comment /* The below configuration must be changed before deployment. */