Typescript – Best Practices



This content originally appeared on DEV Community and was authored by Kiran J

Let, Var and Const

Use const for variables that won’t be reassigned.
Use let for variables that will be reassigned.
Avoid var in new TypeScript code.

Best References:
AWS TypeScript


This content originally appeared on DEV Community and was authored by Kiran J