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><input type="text" ng-model="filter1"></p>
<ul>
<li ng-repeat="y in lang | filter : filter1">
{{ y }}
</li>
</ul>
</div>
<script>
angular.module('myApp', []).controller('my1', function($scope) {
$scope.lang = [
'java',
'php',
'javascript',
];
});
</script>
</body>
</html>
The most helpful ANGULARJS solutions