Typescript-01
Variables and Constants
Commented Out Code
// const xyz='abc'
// alert(xyz)
// let a:string="25";
// let nambo:number=123
// let check:boolean;
xyz: A constant variable initialized with the string 'abc'.
alert(xyz): Displays the value of xyz.
a: ...
blog.bisheshmarasini.com.np2 min read