react-typescript
https://youtu.be/WlxcujsvcIY?si=3EUEqcPIz_aIxIEQ
TypeScript
//// TYPESCRIPT AUTOMATICALLY ASSIGNS A TYPE WHEN YOU DEFINE A VARIABLE
let variable = "hello"; // it internally assign this variable to type string --> type is string
variable = "hi"; // we...
gokulpisharody.hashnode.dev8 min read