Rajesh Kumar

❝ What I wouldn't give to be normal.
To live in that bubble of the naive. ❞

typescript

What typescript is not ...

typescript does ->

premitive types

type inference

typescript automatically detects the type of input given to a variable so most of the time we don't need to specify that explicitly.

let numberOne = 3345;
let numberTwo: number = 41; // it's just too redundant

//Now this is where you should use explicit typecasting 
let hero: string;
function getHero(){
return "Thor";
}
hero = getHero();


//not only we are accepting only number type we are also just returning number type
function addTwo(num: number):number{
    return num + 2;
}
//if not returning anything then mention void as the return type
function logError(errMsg: string): void {
    console.log(errMsg);
}
//never return type for error handling
function logError(errMsg: string): never {
    console.log(errMsg);
}

there is a type "never" similar to "void" but instead of returning "nothing" it "never" returns anything.(good for error handling)

type alias

you can create alias for new types (can create new types)

type User = {
    name : string,
    isPaid : boolean,
}
function createUser(paramUser:User): User{
    return {name:'',isPaid:true}
}

readonly

type User = {
    readonly _id: string, 
    name: string,
    isPaid: boolean,
    creditCardDetails?: number
}
type houseGuest = {
  name: string,
  isPaid: boolean,
  creditCardDetails?: number,
}

type owner = {
  name: string,
  gotPaid: boolean,
}

type student = houseGuest & owner & {
  rollNo?: number,
}

const myStudent: student ={
  name: "Atharv",
  isPaid: false,
  gotPaid: true,
  rollNo : 123,
}

arrays

const superHeros: string[] = []; // first way of defining the type
const superVillans: Array<string> = []; // second way of defining the type

// defining type as array of number arrays 
const MLModel: number[][] = [
    [244,444,222],
    ...
];

Union

a cover for multiple types

let score: number | string;
score = 33;
score = "44";
// it's all okay...
type User = {
    name: string,
    id: number,
}
type Admin = {
    username: string,
    id: number
}

let myUser: User | Admin = {username:"Atharv",name:"Rajesh",id:111};
console.log(myUser);
// myUser can have either the properties of User or Admin or both of them but no less or no more

tuples

type rgb = [number,number,number];
const myrgb: rgb = [12,34,22];
//only 3 elements with only number type

const myArr: [string,number,boolean];
myArr = ['23',23,true];
//now the myArr can only hold 3 items and it'll only accept these 3 types in the same order

Enums

enum Color {
  Red,
  Green = 10,
  Blue,
}

let chosenColor: Color;
chosenColor = Color.Red;
console.log(chosenColor); // Output: 0
chosenColor = Color.Green;
console.log(chosenColor); // Output: 10
chosenColor = Color.Blue;
console.log(chosenColor); // Output: 11

interface

interface User {
  readonly dbId: number,
  name: string,
  userId: number,
  googelId?: string,
  getLogIn(num:number): number,
}

interface Admin extends User {
  adminKey: number,
}