I'm setting a $scope variable to 0 or 1 based on a successful action and showing elements with ng-show. I'm resetting the $scope variable to empty when the step is finished. However, I have discovered that $scope = '' is shown as true if in interpolation {{$scope >= 0}}. Why not false?
controllers.Ctrl = function ($scope, $rootScope, $timeout, $filter, ajax, $parse) {
$scope.datachanged = '';
console.log($scope.datachanged >= 0); // true
};