Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save marciojrtorres/6159413 to your computer and use it in GitHub Desktop.

Select an option

Save marciojrtorres/6159413 to your computer and use it in GitHub Desktop.
A tipagem dinâmica embora mais comoda traz algumas armadilhas
function dobro(n) {
return n * 2;
}
document.write(dobro(2)); // ok, imprime 4
document.write(dobro("t")); // opa! "t" * 2? o que será impresso?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment