What does the `abstract` keyword on a class method in TypeScript signify?

TypeScript Professional Hard

TypeScript Professional — Hard

What does the `abstract` keyword on a class method in TypeScript signify?

Key points

  • `abstract` keyword mandates implementation in subclasses
  • Ensures method overriding in subclasses
  • Prevents instantiation of abstract classes without implementation

Ready to go further?

Related questions