In angularJs ng-model i m binding with some name with ++ operator like
<div ng-app="myApp" ng-controller="myCtrl">
<input type="text" ng-model="firstname++hkjnh">
{{firstname+" "+lastname}}
</div>
output -> FirstName0 from where 0 comes in text
or
<div ng-app="myApp" ng-controller="myCtrl">
<input type="text" ng-model="+124343">
{{firstname+" "+lastname}}
</div>
output ->124343
so plese tell me how angular work with these type of things