Skip to content

Instantly share code, notes, and snippets.

@gries
Created February 10, 2017 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gries/71c4819eaad4828fdaa85f145df56f66 to your computer and use it in GitHub Desktop.
Save gries/71c4819eaad4828fdaa85f145df56f66 to your computer and use it in GitHub Desktop.
// original
if ($scope.person.surname == '' || $scope.person.firstname == '') {
return true;
}
return false;
// simplifiziert
return !!($scope.person.surname == '' || $scope.person.firstname == '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment