我想使用下面的代碼做一個簡單的加法,但由於某種原因結果是簡單的字符串連接,而不是算術加法。有人可以告訴我我在這裏錯過了什麼以及如何解決這個問題?謝謝AngularJS簡單加法不工作
$scope.budget = localStorageService.get('budget'); //this returns 5000
$scope.toBeAdded = localStorageService.get('newAddition'); //this return 500
$scope.NewBudget = $scope.budget + $scope.toBeAdded; //return 5000500 instead of 5500
不要忘記在使用parseInt時添加基數。 – Stuart