typescript tupes code example
Example 1: use type as value typescript
Typescript interfaces aren''t being compiled into the js output, and you can not use them at runtime
Example 2: data type angular
let decimal: number = 6;
let hex: number = 0xf00d;
let binary: number = 0b1010;
let octal: number = 0o744;
let big: bigint = 100n;Try