What is the significance of pipe operator in angularJs and What would be the result of following expression

{{ Somevalue|lowercase|uppercase}}
Pipe operator in AngularJS represents filters that are used on the expression. The preference order is from left to right. So, the result of the above expression would be SOMEVALUE.

Leave a Reply