To avoid flickering, AngularJS expressions within HTML are initially displayed as __________ until compilation.

  • Curly Braces
  • Double Curly Braces
  • Parentheses
  • Square Brackets
To avoid flickering in AngularJS, expressions within HTML are initially displayed as double curly braces ({{ }}) until compilation. These double curly braces are placeholders for AngularJS expressions, and once the compilation is complete, they are replaced with the actual values. This technique helps improve the user experience by preventing users from seeing the raw expressions before AngularJS processes them.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *