With angular input numbers, I notice that if I enter large numbers they can get rounded to something different.
For example, in this plunkr http://plnkr.co/edit/k5G7eL8gIzWbSPGocdlQ?p=preview I set a large max number like this:
<input type="number" name="input" ng-model="value" min="0" max="9223372036854769" required>
Then, if I enter 9223372036854769 in the input field it gets rounded down one. If I enter 9223372036854767 it gets rounded up one.
Considering only integer numbers (no decimals), what is the maximum integer value inputs can receive without rounding? And what is the minimum?