TS Reference: Enums
Quick reference for Enums.
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));
Quick reference for Enums.
Quick summary of Enums with syntax and example.
const x: number = 1;
function add(a:number,b:number){return a+b;}
console.log(add(2,3));