Welcome aboard! We are happy you are here and wish you good net-raft!
<!DOCTYPE html>
<html ng-app>
<head>
<meta charset="utf8" />
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>
</head>
<body>
<div ng-init="langs = [{type:'client', language:'javascript'},
{type:'server', language:'php'},
{type:'client', language:'angularjs'},
{type:'server', language:'python'}]"></div>
type: <input ng-model="searchText.type"/>
name: <input ng-model="searchText.language"/>
<table>
<tr> <th>language</th><tr>
<tr ng-repeat="lang in langs | filter:searchText">
<td>{{lang.type}}</td>
<td>{{lang.language}}</td>
<tr>
</table><hr/>
</body>
</html>
The most helpful ANGULARJS solutions
How to get client ip address using angularjs ?ANGULARJS Click to see more ... 19.6K 2.8K