AngularJS | angular.lowercase() Function
The angular.lowercase() Function in AngularJS is used to convert the string into lowercase. It can be used when user wants to show the text in lowercase instead of uppercase or one wants to compare two strings.
Syntax:
angular.lowercase(string)
Example: In this example the string is converted into lowercase.
< html ng-app = "app" > < head > < script src = </ script > < title >angular.lowercase()</ title > </ head > < body style = "text-align:center" > < h1 style = "color:green" >GeeksforGeeks</ h1 > < h2 >angular.lowercase()</ h2 > < div ng-controller = "geek" > < br > < b >Before: </ b >{{ string1 }} < br >< br > < button id = "myButton" ng-mousedown = "lower()" >Click it!</ button > < br >< br > < b >After: </ b >{{ string2 }} </ div > < script > var app = angular.module('app', []); app.controller('geek', function($scope) { $scope.obj1 = "GEEKSFORGEEKS IS THE COMPUTER SCIENCE PORTAL FOR GEEKS." $scope.obj2; $scope.string1 = $scope.obj1; $scope.lower = function() { $scope.string2 = angular.lowercase($scope.obj1); } }); </ script > </ body > </ html > |
Output:
Before Click:
After Click: