Skip to content

Instantly share code, notes, and snippets.

@wedburst
Created October 23, 2020 18:18
Show Gist options
  • Select an option

  • Save wedburst/2cdd790a823a99b97c8133ee1b6d5061 to your computer and use it in GitHub Desktop.

Select an option

Save wedburst/2cdd790a823a99b97c8133ee1b6d5061 to your computer and use it in GitHub Desktop.
var n = Math.random();
n = n * 6;
var num = Math.floor(n);
if (num >= 6){
console.log(num + " Estamos alejando");
}
if (num >= 4 && num < 5){
console.log(num + " Vamos Bien");
}
if(num > 2 && num <= 3){
console.log(num + " Casi llego");
}
if (num <= 2){
console.log(num + " Muy Bajo");
}
if (num === 5){
console.log(num + " es tu dia de cumpleaños")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment