Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Front End Developer / Module 4 - JavaScript

◀️ Front End Developer


Comments

// Single line comment

/*
Multi
line
comment
*/

Statements

// Terminate statements with semicolons
new Array();
// Statements without semicolons have them automatically inserted in most cases
new Array()

Variables

// Variables can contain any value at any point during script execution
var x;
let y;      // Available in ES6
const z;    // Available in ES6