1 2 function mifuncion(arg1, arg2) {3 4 alert(typeof arg1);5 alert(typeof arg2);6 7 if (typeof arg2 == 'undefined') {8 alert('No me has pasado el parametrer 2');9 }10 11 }12 13 //mifuncion(1,2);14 mifuncion(3);
Enlace
El enlace para compartir es: