Currently, my code looks like this:
$scope.value = 0;
///
<input type="number" ng-model="value" placeholder="This is not displaying" />
As you can see, the default value of 0
shows up inside the number input instead of the desired placeholder
.
Is there a way to make the placeholder appear without showing the default value?