mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-25 02:15:57 +00:00
fixing javascript translate
This commit is contained in:
parent
f0a4c88acf
commit
04694a00e5
@ -436,7 +436,6 @@ var myPrototype = {
|
|||||||
myObj.__proto__ = myPrototype;
|
myObj.__proto__ = myPrototype;
|
||||||
myObj.meaningOfLife; // = 42
|
myObj.meaningOfLife; // = 42
|
||||||
|
|
||||||
// This works for functions, too.
|
|
||||||
// Isto funciona para funções, também.
|
// Isto funciona para funções, também.
|
||||||
myObj.myFunc(); // = "olá mundo!"
|
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
|
// 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:
|
// 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){
|
Object.create = function(proto){
|
||||||
// faz um construtor temporário com o prototype certo
|
// faz um construtor temporário com o prototype certo
|
||||||
var Constructor = function(){};
|
var Constructor = function(){};
|
||||||
|
Loading…
Reference in New Issue
Block a user