aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary
diff options
context:
space:
mode:
authorMasahiro FUJIMOTO <mfujimot@gmail.com>2021-05-29 22:14:13 +0900
committerGitHub <noreply@github.com>2021-05-29 22:14:13 +0900
commit3b3abedc199e13a77dd867a1a2e6ec6d56254e40 (patch)
tree38008c288065f0897f6be37c695be87818a3cb8c /files/ja/glossary
parent28377f692739345c99df9107ac21b9c75fe8f33b (diff)
downloadtranslated-content-3b3abedc199e13a77dd867a1a2e6ec6d56254e40.tar.gz
translated-content-3b3abedc199e13a77dd867a1a2e6ec6d56254e40.tar.bz2
translated-content-3b3abedc199e13a77dd867a1a2e6ec6d56254e40.zip
Glossary/Instance を更新 (#894)
- 2020/09/16 時点の英語版に同期 - 訳注マクロを削除
Diffstat (limited to 'files/ja/glossary')
-rw-r--r--files/ja/glossary/instance/index.html20
1 files changed, 6 insertions, 14 deletions
diff --git a/files/ja/glossary/instance/index.html b/files/ja/glossary/instance/index.html
index 0c0af3af54..7ea91a5386 100644
--- a/files/ja/glossary/instance/index.html
+++ b/files/ja/glossary/instance/index.html
@@ -1,28 +1,20 @@
---
-title: Instance
+title: Instance (インスタンス)
slug: Glossary/Instance
tags:
- Beginner
- CodingScripting
- Glossary
- JavaScript
- - NeedsContent
+ - NeedsExample
+ - OOP
translation_of: Glossary/Instance
---
-<p>{{glossary("constructor", "コンストラクタ")}} によって作成された{{glossary("object","オブジェクト")}}は、そのコンストラクタのインスタンス(実体)と呼ばれます。</p>
+<p>{{glossary("constructor", "コンストラクター")}}によって作成された{{glossary("object","オブジェクト")}}は、そのコンストラクターのインスタンスになります。</p>
-<pre class="brush: js">var a = function(){};
-//a is constructor.
+<h2 id="Learn_more">詳細情報</h2>
-var b = new a();
-//b is instance.
-</pre>
-
-<p>{{訳注("JavaScript は、 Java のようなクラスベースの言語とは違い、new を用いたクラスのインスタンス化だけではなく、オブジェクト初期化子({})を用いても、オブジェクトを作成できます。")}}</p>
-
-<h2 id="関連項目">関連項目</h2>
-
-<h3 id="基礎知識">基礎知識</h3>
+<h3 id="General_knowledge">一般知識</h3>
<ul>
<li>ウィキペディア上の記事{{interwiki("wikipedia", "インスタンス", "インスタンス")}}</li>