Typescript Flashcards
1
Q
What is DOM
A
Document Object Model
The data representation of the objects that comprise the structure and content of a document on the web.
The DOM represents the document as nodes and objects; that way, programming languages can interact with the page.
2
Q
What is Typescript
A
Typescript is a superset of Javascript, meaning that valid Javascript code is valid Typescript code. But Typescript offers syntax for types, making it a strongly typed programming language.