Skip to content

Instantly share code, notes, and snippets.

@masterk63
Created July 20, 2017 15:26
Show Gist options
  • Save masterk63/e2aa101f18ffe83fa0d2bac4c26278f2 to your computer and use it in GitHub Desktop.
Save masterk63/e2aa101f18ffe83fa0d2bac4c26278f2 to your computer and use it in GitHub Desktop.
switch case
switch (this.formulario.tarjeta.value)
{
case '1':
this.tarjeta = 'AMERICAN EX.';
break;
case '2':
this.tarjeta = 'MASTERCARD';
break;
case '3':
this.tarjeta = 'VISA';
break;
default:
this.tarjeta = '';
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment