Skip to content

Instantly share code, notes, and snippets.

@JuliaGabellone
Created October 27, 2011 03:13
Show Gist options
  • Save JuliaGabellone/1318695 to your computer and use it in GitHub Desktop.
Save JuliaGabellone/1318695 to your computer and use it in GitHub Desktop.
function valor (valor , modelo , año){
if(typeof(modelo)!='string'){
return false
}
if (año > 1990){
resultado = (valor -(10*valor/100))
}
console.log("el valor de su auto" + " " + modelo + " " + año + " " + "es de" + " " + resultado)
return true
}
valor(3000, "fiesta" , 1996)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment