npx https://gist.github.com/emilioriosvz/8ce9745e98276f4a288bad062d6f01b3
Last active
May 10, 2018 07:31
-
-
Save emilioriosvz/8ce9745e98276f4a288bad062d6f01b3 to your computer and use it in GitHub Desktop.
finiquito or not
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
#!/usr/bin/env node | |
const finiquito = (max, min) => { | |
const num = Math.floor(Math.random() * (max - min)) + min | |
if ((max / 2) < num) return 'Felicidades, te has ganado un FINIQUITO' | |
return 'de momento te libras del finiquito' | |
} | |
console.log(finiquito(10, 0)) |
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
{"name": "npx-example", "version": "0.0.0", "bin": "./finiquito.js"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment