Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.
Sanket Chaudhari edited this page May 9, 2020 · 3 revisions
// Defining variable
let a = 10;
let b = 5;

// Assignments
a + b
a - b
a / b
a * b
a ** b
a % b

// Functions
let add = fn(a, b) {
    return a + b;
}


Clone this wiki locally