Typescript - Best Practices
KIranuknow

KIranuknow @kiranuknow

Joined:
Nov 15, 2023

Typescript - Best Practices

Publish Date: Jul 11 '24
0 0

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

Comments 0 total

    Add comment