Created
February 26, 2016 18:27
-
-
Save AFelipeTrujillo/a8a08d2dd0dfc016e8ff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
app.controller('controller',function($scope,defaultValue,calcService){ | |
$scope.value = defaultValue; | |
$scope.number = 14; | |
$scope.result = calcService.isEven($scope.number); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment