I have 2 input text
<input type="text" ng-model="name">
<input type="text" ng-model="lastname">
I have a table :
<table>
<thead>
<th>Name</th>
<th>Last Name</th>
</thead>
<tbody>
<tr ng-repeat="row in customers">
<td>{{row.fname}}</td>
<td>{{row.lname}}</td>
</tr>
</tbody>
</table>
I want to push data from name and last name text boxes into a row in the table using angularjs, any help?