diff options
author | Victor Caldas <victorcaldas@gmail.com> | 2015-10-31 16:31:22 -0200 |
---|---|---|
committer | Victor Caldas <victorcaldas@gmail.com> | 2015-10-31 16:31:22 -0200 |
commit | 04694a00e54272799e50ef8570ddef70a1fd5779 (patch) | |
tree | ac154dd0b65223bbfcc6579bec6fd61823f1bec4 /pt-br | |
parent | f0a4c88acfac9514aca6dd33e2d3f8c4d5e815dc (diff) |
fixing javascript translate
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/javascript-pt.html.markdown | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pt-br/javascript-pt.html.markdown b/pt-br/javascript-pt.html.markdown index 406042fa..6424214e 100644 --- a/pt-br/javascript-pt.html.markdown +++ b/pt-br/javascript-pt.html.markdown @@ -436,7 +436,6 @@ var myPrototype = { myObj.__proto__ = myPrototype; myObj.meaningOfLife; // = 42 -// This works for functions, too. // Isto funciona para funções, também. myObj.myFunc(); // = "olá mundo!" @@ -506,7 +505,7 @@ String.prototype.firstCharacter = function(){ // Havíamos mencionado que `Object.create` não estava ainda disponível em // todos as implementações, mas nós podemos usá-lo com esse polyfill: -if (Object.create === undefined){ // don't overwrite it if it exists +if (Object.create === undefined){ // Não o sobrescreve se já existir Object.create = function(proto){ // faz um construtor temporário com o prototype certo var Constructor = function(){}; |