Skip to content

How to declare variable in TypeScript?

var name: string = 'Bulbul'; 
const age: number = 34;
let email: string = 'bulbul.cse@outlook.com';
See also  How to change checkbox checked color in CSS?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.