Looking to calculate the total of all values in table cells with ng-model. However, it is treating the values as strings instead of numbers.
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<table border=1 ng-app>
<tr>
<th>Products</th>
<th>Price</th>
</tr>
<tr>
<td>Product 1</td>
<td ng-model="one">120</td>
</tr>
<tr>
<td>Product 2</td>
<td ng-model="two">120</td>
</tr>
<tr>
<td>Product 3</td>
<td ng-model="three">120</td>
</tr>
</table>
{{ one + two + three }}
<div>