Skip to content

Instantly share code, notes, and snippets.

@coliveravenegas
Created April 5, 2020 23:03
Show Gist options
  • Save coliveravenegas/ac91707109db28b144f6bb8b2b15fdf0 to your computer and use it in GitHub Desktop.
Save coliveravenegas/ac91707109db28b144f6bb8b2b15fdf0 to your computer and use it in GitHub Desktop.
//BAD
const pugs = 3;
/* GOOD - usando un prefijo como hacemos mas claro que es un
valor numerico */
const minFruits = 1;
const maxFruits = 5;
const totalFruits = 10;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment