One Way Data Binding in Angular : Part 4

preview_player
Показать описание
Learn Data Binding. Know about Angular Binding Landscape.
One Way Data Binding from component to view using Interpolation Binding , Property Binding , Attribute Binding , Class Binding , Style Binding.
Рекомендации по теме
Комментарии
Автор

At 4:33 I would advise against using concatenation in a binding. Null values will render as 'null'. It would be better to use two bindings.
let firstName = 'Madonna';
let lastName = null;

{{firstName}} {{lastName}} - Madonna
vs
{{firstName + " " + lastName}} - Madonna null

drymeatpowered
Автор

I love the tutorial, Your tutorial have made me understand with ease, Keep up

josephmbote