Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit bf2cdd8

Browse files
author
Jeff Sanchez
committed
cleaned up a few more questions
1 parent cb39ad7 commit bf2cdd8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

‎README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,16 @@ A: example: `<div>{{ value | my-pipe : option }}</div>`
2626

2727
A: example: `<div title="Hello {{username}}">...</div>`
2828

29+
**What is `<ng-container>`?**
30+
31+
A: A grouping element that does not interfere with styles or layout (it's analogous to curly braces in JavaScript).
32+
33+
34+
**What is `<ng-template>`?**
35+
36+
A: It's an Angular element for rendering HTML when using structural directives. The ng-template itself does not render to anything but a commment directly.
37+
38+
2939
## Component/Directive Questions
3040

3141
**What is the minimum definition of a component?**
@@ -336,6 +346,10 @@ A: To inject known safe code, you can bypass sanitation (e.g. to embed an iframe
336346

337347
A: Complex application state management requirements, involving asynchronous requests to update state.
338348

349+
**What is Redux and how does it relate to an Angular app?**
350+
351+
A: It's a way to manage application state and improve maintainability of asynchronicity in your application by providing a single source of truth for the application state, and a unidirectional flow of data change in the application. ngrx/store is one implementation of Redux principles.
352+
339353
**What would be a good use case for having your own routing module?**
340354

341355
A: An application whose requirements imply having many routes, and potentially route guards, and child routes.

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /