[typescript]type inference

Tue Feb 11

typescript

Author:Noritaka

Astro
let hasValue = true;
let count = 10;
let float = 3.14;
let negaative = -3.14;
let single = 'hello';
let double = "hello";
let back = `hello`;
let hello = 'hello';

typescript