Skip to content

Instantly share code, notes, and snippets.

@hw0k
Created March 26, 2020 01:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hw0k/c8f1ef09a32f9db746d456034dcb4eff to your computer and use it in GitHub Desktop.
Save hw0k/c8f1ef09a32f9db746d456034dcb4eff to your computer and use it in GitHub Desktop.
LID 6
const rec: Rectangle = new Rectangle();
rec.width = 3;
rec.height = 4;
console.log(rec.area === 12); // true
const rec2: Rectangle = new Square();
rec2.width = 3;
rec2.height = 4;
console.log(rec.area === 12); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment