Last active
August 29, 2015 14:15
-
-
Save victorvhpg/667b4cfcfeb7053fff79 to your computer and use it in GitHub Desktop.
modulo qualquerCoisa
This file contains hidden or 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"; | |
//exportando propriedades e metodos do modulo | |
exports.qualQuerValor = "1111111"; | |
exports.fazAlgo = function() { | |
console.log("fazAlgo"); | |
}; | |
exports.fazAlgoDiferente = function() { | |
console.log("fazAlgoDiferente"); | |
}; | |
exports.naoFazDada = function() { | |
console.log("naoFazDada"); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment