Skip to content

Instantly share code, notes, and snippets.

@JuliaGabellone
Created October 20, 2011 02:48
Show Gist options
  • Save JuliaGabellone/1300294 to your computer and use it in GitHub Desktop.
Save JuliaGabellone/1300294 to your computer and use it in GitHub Desktop.
function iguales (text , number){
if (typeof(text)!='string'){
console.error("Ingrese texto")
return false
}
if (typeof(number)!= 'number'){
console.error("Ingrese numero")
return false
}
if (text != number){
return false
}
else{
return true
}
}
iguales("3" , 2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment