Created
July 20, 2017 15:26
-
-
Save masterk63/e2aa101f18ffe83fa0d2bac4c26278f2 to your computer and use it in GitHub Desktop.
switch case
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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