The difference between var and let in TypeScript
In this article let us find out what is the difference between the keywords ‘var’ and ‘let’ that are used to define a variable in TypeScript. The variable which has been declared with the ‘var’ keyword will still belong to the same variable even though it has been declared again in another code block with…
Read More “The difference between var and let in TypeScript” »