Angular - RxJS and Observables Fundamentals
In Angular templates, which syntax correctly applies the async pipe to an Observable named
items$?items$?| followed by async without parentheses.{{ items$ | async }}. {{ items$.async() }} incorrectly uses parentheses. {{ async(items$) }} treats async as a function, which is invalid in templates. {{ items$ | await }} uses a non-existent pipe await.| async without parentheses [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions