Angular is written primary in WHAT PROGRAMMING LANGUAGE?
What is TypeScript?
This is the basic BUILDING BLOCK of an angular app.
What is a component?
This command runs an angular app locally
What is "ng serve"?
This type of data binding listens for user actions
What is event binding?
The two styling languages in angular builds are
HTML and CSS
Angular applications are usually structured as THIS kind of web app
What is a single page application? (SPA)
This building block groups related features together.
What is a module?
This command will generate a new component named "hello"
What is "ng g component hello"?
This type of data binding uses [ ]
What is property binding?
In angular, this file is the very first one the browser loads.
What is index.html?
Angular uses this as its template language (front end)
What is HTML
Interpolation in angular uses THESE symbols
What are {{ }}?
This command checks your current Angular CLI version
What is "ng version"
This type of binding combines property and event binding, using [( )]
What is two way binding?
CSS stands for this
What is cascading style sheets?
What does CLI stand for?
What is Command Line Interface
This DECORATOR makes a class into an angular component
What is @Component?
This command will create a new project.
What is "ng new project_name"?
List the four types of data binding
What is Interpolation, Event binding, Property binding and two-way binding?
HTML stands for this
What is hypertext markup language?
This angular cli command starts a new project
What is ng new?
This type of binding lets you send data from a parent component to a child component using @Input()
What is Property Binding?
This installs angular globally on your system
What is npm install -g @angular/cli
This angular module must be imported in app.module.ts before you can use two-way binding with [(ngModel)]
What is FormsModule?
In Angular, the <app-root> tag inside index.html corresponds to THIS file.
What is app.component.ts?