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

TS Reference: Enums

Quick reference for Enums.

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

TS Reference — Enums

Quick summary of Enums with syntax and example.

Syntax

const x: number = 1;

Example

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