top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What is Interpolation in Angular.js?

0 votes
513 views
What is Interpolation in Angular.js?
posted May 31, 2018 by anonymous

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

2 Answers

0 votes

Interpolation markup with embedded expressions is used by AngularJS to provide data-binding to text nodes and attribute values.

<a ng-href="img/{{username}}.jpg">Hello {{username}}!</a>
answer May 31, 2018 by Puneet Batra
0 votes

with the use of interpolation you can display in view any variable which is in TS file.

answer May 15, 2019 by Rushabh Verma R.
...