Created
August 5, 2013 20:39
-
-
Save marciojrtorres/6159413 to your computer and use it in GitHub Desktop.
A tipagem dinâmica embora mais comoda traz algumas armadilhas
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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