Skip to content

Latest commit

 

History

History
57 lines (29 loc) · 1.66 KB

README.md

File metadata and controls

57 lines (29 loc) · 1.66 KB

TypeScript

TypeScript is "JavaScript that scales." A key part of "scales" is the language services, which are a core part of the TypeScript. Losing them will lead to a loss in productivity, not just for you but for everyone else working with your code.

TypeScript Videos

TypeScript Pro Essentials

  • Duration: 11:02:12, Released: 07/08/2024, Author: Matt Pocock

The Ultimate TypeScript Course

  • Duration: 04:22:18, Released: 05/01/2022, Author: Mosh

React and Typescript: Build a Portfolio Project

  • Duration: 29:21:20, Updated: 04/10/2021, Author: Steven Grider

Practical Advanced TypeScript

  • Duration: 01:02:57, Date added: 03/29/2021

React with TypeScript

  • Duration: 02:00:53, Date added: 01/16/2021, Author: ui.dev

Typescript: The Complete Developer's Guide

  • Duration: 24:38:03, Updated: 01/11/2021, Author: Steven Grider

Production-Grade TypeScript

  • Duration: 05:10:46, Updated: 11/16/2020

TypeScript Pro (James Henry)

  • Duration: 06:02:19, Date added: 06/03/2020, Author: James Henry (great British accent)

TypeScript Books

Tackling TypeScript - Upgrading from JavaScript (is on CH)

  • by Dr. Axel Rauschmayer, 2020

Fullstack React Book - The Complete Guide to ReactJS (is on CH)

  • by Anthony Accomazzo, Nate Murray, Ari Lerner, Clay Allsopp, David Guttman, and Tyler McGinnis

TypeScript Notes

Extends is used to get attributes of a parent class into base class and may contain already defined methods that can be overridden in the child class.

Implements is used to implement an interface (parent class with functions signatures only but not their definitions) by defining it in the child class.