Answers for "any typescript"

1

how to declare a boolean in typescript

let isDone: boolean = false;
Posted by: Guest on November-03-2020
5

typescript array

let list: number[] = [1, 2, 3];
Posted by: Guest on March-04-2020
0

any typescript

let coupon: any;

coupon = 26;
coupon = 'DEAL26';
coupon = true;
Posted by: Guest on August-09-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language