over 8 years ago
Hii,
Use of Ternary Operator in AngularJs is one of the great feature which provides an alternative to conditions such as if, else and end if.
Syntax:
{{ Condition ? expressionOne : expressionTwo }}
The above syntax is executed in the following way:
If the condition is true, it evaluates the first expression and it will become the result. Else, it will evaluate the second expression and that becomes the result.
Now.Go through the example to understand the use of ternary operator in angularJs
Example:
In this example i am using a ternary operator where it will check wheather the month is having odd or even days.
<div ng-app
ng-init="Monthtype=[
{ month:1, odd:31 },
{ month:2, even:28 },
{ month:3, odd:31 },
{ month:4, even:30 },
{ month:5, odd:31 }]">
<!-- LOOP.-->
<div ng-repeat="List in Monthtype">
<div>{{ 'Month' + List.month }} : {{ List.odd > 30 ? 'odd -' + List.odd : 'even -' + List.even}} </div>
</div>
</div>
<div ng-app
ng-init="Monthtype=[
{ month:1, odd:31 },
{ month:2, even:28 },
{ month:3, odd:31 },
{ month:4, even:30 },
{ month:5, odd:31 }]">
<!-- LOOP.-->
<div ng-repeat="List in Monthtype">
<div>{{ 'Month' + List.month }} : {{ List.odd > 30 ? 'odd -' + List.odd : 'even -' + List.even}} </div>
</div>
</div>
Output:
Month1 : odd -31
Month2 : even -28
Month3 : odd -31
Month4 : even -30
Month5 : odd -31
Can you help out the community by solving one of the following Javascript problems?
Do activity (Answer, Blog) > Earn Rep Points > Improve Rank > Get more opportunities to work and get paid!
For more topics, questions and answers, please visit the Tech Q&A page.
0 Comment(s)