Skip to content

Instantly share code, notes, and snippets.

View Robetjunior's full-sized avatar
:octocat:
Focusing

José Roberto Robetjunior

:octocat:
Focusing
  • Sao Paulo, Brazil
View GitHub Profile
// Write a function eligibleToDrink() that takes a number as an argument and returns a promise
// that tests if the passed value is less than or greater than the value 18.
// If greater then 18, resolve with 'Being ___ years old, you are eligible to drink'.
// If less then 18, reject with '___ years is underage. Here is a fresh squeezed orange juice for you!'
function eligibleToDrink (age) {
// ... your code