Giter VIP home page Giter VIP logo

cheat-sheets's Introduction

cheat-sheets

Typescript

Type Guards

typeof

type num = number | string;

const add = (a: num, b: num) {
  if (typeof a === "number" && typeof b === "number") {
    return a + b; // a - number, b - number
  }
}

instanceof

class Box {
  private side: number = 10;

  getSide = (): number => {
    return this.side;
  }
}

class Circle {
  private radius: number = 10;

  getRadius = (): number => {
    return this.radius;
  }
}

type Figure = Box | Circle;

const render = (figure: Figure) => {
  let size: number = 0;

  if (figure instanceof Box) {
    size = figure.getSide();  // figure - Box
  }
  if (figure instanceof Circle) {
    size = figure.getRadius(); // figure - Circle
  }
}

in type

const render = (figure: Figure) => {
  let size: number = 0;

  if ('getSide' in figure) {
    size = figure.getSide(); // figure - Box
  }
  if ('getRadius' in figure) {
    size = figure.getRadius(); // figure - Circle
  }
}

equality narrowing

const check = (a: number | string, b: number) => {
  if (a === b) {
    // a - number because b - number
  } else {
    // a - number | string
  }
}

user-defined

const isBox = (figure: Figure): figure is Box => {
  return figure instanceof Box;
}

cheat-sheets's People

Contributors

ivanstnsk avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.