Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="my1">
<p>This is {{ lang | uppercase }}</p>
</div>
<script>
angular.module('myApp', []).controller('my1', function($scope) {
$scope.lang = "angularjs",
$scope.type = "client-side"
});
</script>
</body>
</html>
The most helpful ANGULARJS solutions