DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

JS Reference: Functions

Quick reference for Functions.

Read time: 1 min Words: 14
Open Playground → HTML My Progress

JS Reference — Functions

Quick summary of Functions with syntax and example.

Syntax

const x = 1;

Example

function add(a,b){return a+b;}
console.log(add(2,3));