+1 vote
in Angular by
How will you convert an input to all lowercase?

1 Answer

0 votes
by

lowercase filter is used to convert the input to all lowercase.

In below example, we've added lowercase filter to an expression using pipe character. Here we've added lowercase filter to print student name in all lowercase letters.

<div> 

   The name of this Tutorial is {{TutorialName}}

  

   The first Topic is {{appList[0] | lowercase}}

 

   The second Topic is {{appList[1] | lowercase}}

 

   The third Topic is {{appList[2]| lowercase}}

 

</div> 

Related questions

0 votes
asked May 17, 2020 in Python by SakshiSharma
+1 vote
asked Jul 5, 2022 in Angular by sharadyadav1986
...