Skip to content

Instantly share code, notes, and snippets.

@sorribas
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sorribas/a5ebd52fc2160e8a6337 to your computer and use it in GitHub Desktop.
Save sorribas/a5ebd52fc2160e8a6337 to your computer and use it in GitHub Desktop.
var x = 3;
if (x % 2 == 0)
{
console.log('EL número es par');
console.log('...');
}
else
{
console.log('EL número es impar');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment