Skip to content

Commit bc00418

Browse files
Updated prototype sample output
1 parent e78568f commit bc00418

File tree

15 files changed

+15
-15
lines changed

15 files changed

+15
-15
lines changed

doc/by/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ JavaScript гэта адзіная шырока выкарыстоўваемая
4040
// Выніковы ланцужок прататыпаў
4141
test [instance of Bar]
4242
Bar.prototype [instance of Foo]
43-
{ foo: 'Hello World' }
43+
{ foo: 'Hello World', value: 42 }
4444
Foo.prototype
4545
{ method: ... }
4646
Object.prototype

doc/en/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ chains*.
4141
// The resulting prototype chain
4242
test [instance of Bar]
4343
Bar.prototype [instance of Foo]
44-
{ foo: 'Hello World' }
44+
{ foo: 'Hello World', value: 42 }
4545
Foo.prototype
4646
{ method: ... }
4747
Object.prototype

doc/es/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ llamadas de *cadenas de prototipo* (*prototype chains*).
4141
// Resultado de cadena de prototipos (prototype chain)
4242
test [instance of Bar]
4343
Bar.prototype [instance of Foo]
44-
{ foo: 'Hello World' }
44+
{ foo: 'Hello World', value: 42 }
4545
Foo.prototype
4646
{ method: ... }
4747
Object.prototype

doc/fi/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Ensimmäinen suuri ero liittyy siihen, kuinka perintä toimii. JavaScriptissä s
3131
// Prototyyppiketju
3232
test [Bar-olio]
3333
Bar.prototype [Foo-olio]
34-
{ foo: 'Terve maailma' }
34+
{ foo: 'Terve maailma', value: 42 }
3535
Foo.prototype
3636
{ method: ... }
3737
Object.prototype

doc/fr/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ La première différence majeure est que l'héritage en JavaScript utilise des *
3333
// La chaîne de prototypes qui en résulte
3434
test [instance of Bar]
3535
Bar.prototype [instance of Foo]
36-
{ foo: 'Hello World' }
36+
{ foo: 'Hello World', value: 42 }
3737
Foo.prototype
3838
{ method: ... }
3939
Object.prototype

doc/hu/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ használ.
4040
// A kapott prototípus lánc
4141
test [instance of Bar]
4242
Bar.prototype [instance of Foo]
43-
{ foo: 'Hello World' }
43+
{ foo: 'Hello World', value: 42 }
4444
Foo.prototype
4545
{ method: ... }
4646
Object.prototype

doc/it/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ La prima grande differenza è che l'ereditarietà in JavaScript utilizza le
4343
// La catena di prototipi finale
4444
test [istanza di Bar]
4545
Bar.prototype [istanza di Foo]
46-
{ foo: 'Hello World' }
46+
{ foo: 'Hello World', value: 42 }
4747
Foo.prototype
4848
{ method: ... }
4949
Object.prototype

doc/ja/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ JavaScriptはプロトタイプベースが採用されている唯一の広範
3333
// プロトタイプチェーンの結果
3434
test [instance of Bar]
3535
Bar.prototype [instance of Foo]
36-
{ foo: 'Hello World' }
36+
{ foo: 'Hello World', value: 42 }
3737
Foo.prototype
3838
{ method: ... }
3939
Object.prototype

doc/ko/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Javascript는 클래스 스타일의 상속 모델을 사용하지 않고 *프
3131
// 결과적으로 만들어진 프로토타입 체인은 다음과 같다.
3232
test [instance of Bar]
3333
Bar.prototype [instance of Foo]
34-
{ foo: 'Hello World' }
34+
{ foo: 'Hello World', value: 42 }
3535
Foo.prototype
3636
{ method: ... }
3737
Object.prototype

doc/pl/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ tak zwanych *łańcuchów prototypów*.
4141
// The resulting prototype chain
4242
test [instance of Bar]
4343
Bar.prototype [instance of Foo]
44-
{ foo: 'Hello World' }
44+
{ foo: 'Hello World', value: 42 }
4545
Foo.prototype
4646
{ method: ... }
4747
Object.prototype

doc/ptbr/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ A primeira grande diferença é que herança em JavaScript utiliza o conceito de
3737
// A cadeia prototype resultante
3838
test [instance of Bar]
3939
Bar.prototype [instance of Foo]
40-
{ foo: 'Hello World' }
40+
{ foo: 'Hello World', value: 42 }
4141
Foo.prototype
4242
{ method: ... }
4343
Object.prototype

doc/ru/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// Цепочка прототипов, которая получится в результате
3232
test [instance of Bar]
3333
Bar.prototype [instance of Foo]
34-
{ foo: 'Hello World' }
34+
{ foo: 'Hello World', value: 42 }
3535
Foo.prototype
3636
{ method: ... }
3737
Object.prototype

doc/tr/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ yapılmasıdır.
3939
// Sonuçta ortaya çıkan prototip zinciri
4040
test [bir Bar sınıfı nesnesi]
4141
Bar.prototype [bir Foo sınıfı nesnesi]
42-
{ foo: 'Hello World' }
42+
{ foo: 'Hello World', value: 42 }
4343
Foo.prototype
4444
{ method: ... }
4545
Object.prototype

doc/zh/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ other way around is a far more difficult task.)
3535
// 原型链
3636
test [Bar的实例]
3737
Bar.prototype [Foo的实例]
38-
{ foo: 'Hello World' }
38+
{ foo: 'Hello World', value: 42 }
3939
Foo.prototype
4040
{method: ...};
4141
Object.prototype

doc/zhtw/object/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ JavaScript 不包含傳統繼承的模型,它使用的是*原型*模型。
3333
// 原型鏈
3434
test [instance of Bar]
3535
Bar.prototype [instance of Foo]
36-
{ foo: 'Hello World' }
36+
{ foo: 'Hello World', value: 42 }
3737
Foo.prototype
3838
{ method: ... }
3939
Object.prototype

0 commit comments

Comments
 (0)