Created
November 8, 2016 17:27
-
-
Save ronaiza-cardoso/57eb3268e54efeabf6daf4fe22b6bd69 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
'use strict'; | |
module.exports = { | |
sum: (n1, n2) => { | |
return n1 + n2; | |
}, | |
sub: (n1, n2) => { | |
return n1 - n2; | |
}, | |
div: (n1, n2) => { | |
return n1 / n2; | |
}, | |
mult: (n1, n2) => { | |
return n1 * n2; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment