Skip to content

Instantly share code, notes, and snippets.

@JuliaGabellone
Created October 17, 2011 18:23
Show Gist options
  • Save JuliaGabellone/1293355 to your computer and use it in GitHub Desktop.
Save JuliaGabellone/1293355 to your computer and use it in GitHub Desktop.
function juls (texto){
if (typeof(texto)!='string'){
return false;
}
else {
console.log("OK")
}
}
juls(3434)
Si pongo un numero me da false, si pongo string me da OK.
@fernandezpablo85
Copy link

proba hacer:

var resultado = juls(2345);
console.log(resultado);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment