TypeScript Interview Questions and Answers
Question: Explain the difference between 'let' and 'const' in TypeScript.Answer: 'let' is used to declare variables with block scope, while 'const' is used to declare constants with block scope that cannot be reassigned. |
Save For Revision
Bookmark this item, mark it difficult, or place it in a revision set.
Log in to save bookmarks, difficult questions, and revision sets.
Is it helpful? Yes No
Most helpful rated by users:
- What is TypeScript?
- Explain the difference between \'let\' and \'const\' in TypeScript.
- What are the basic data types in TypeScript?
- How do you define an interface in TypeScript?
- What is the \'any\' type in TypeScript?