Skip to content

Commit

Permalink
表記ゆれの修正
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Aug 16, 2024
1 parent 16f9fc3 commit 0bcb9bc
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ l10n:
`Ball` クラスは `extends` を使用して `Shape` から派生させる必要があります。 `Ball` のコンストラクターは以下のようになります。

- 引数として、 `x`, `y`, `velX`, `velY`, `size`, `color` を受け取ります。
- `super()` を使用して `Shape` コンストラクタを呼び出し`x``y``velX``velY` の各引数を渡します。
- `super()` を使用して `Shape` コンストラクターを呼び出し`x``y``velX``velY` の各引数を渡します。
- 与えられた引数から `color``size` のプロパティを初期化します。

`Ball` コンストラクターは `exists` という新しいプロパティを定義する必要があります。これは、ボールがプログラム内に存在するかどうか(悪のサークルに食べられていないかどうか)を追跡するために使用されます。これは論理値 (`true`/`false`) で、コンストラクターの中で `true` に初期化する必要があります。
Expand Down
2 changes: 1 addition & 1 deletion files/ja/learn/javascript/objects/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ JavaScript では、文字列や配列などの JavaScript のコア機能から
- [オブジェクトの基本](/ja/docs/Learn/JavaScript/Objects/Basics)
- : JavaScript オブジェクトについて記載している最初の記事では、基本的な JavaScript オブジェクト構文を見てみます。コースの初期段階で既に見た JavaScript の機能を再び見てみたり、すでに扱っている機能の多くは実際にオブジェクトであるという事実を繰り返し述べています。
- [オブジェクトプロトタイプ](/ja/docs/Learn/JavaScript/Objects/Object_prototypes)
- : プロトタイプは、JavaScript オブジェクトが互いに機能を継承するメカニズムであり、古典的なオブジェクト指向プログラミング言語の継承メカニズムとは異なる働きをします。この記事では、その違いを探り、プロトタイプチェーンの仕組みを説明し、prototype プロパティを使用して既存のコンストラクタにメソッドを追加する方法を見ていきます
- : プロトタイプは、JavaScript オブジェクトが互いに機能を継承するメカニズムであり、古典的なオブジェクト指向プログラミング言語の継承メカニズムとは異なる働きをします。この記事では、その違いを探り、プロトタイプチェーンの仕組みを説明し、prototype プロパティを使用して既存のコンストラクターにメソッドを追加する方法を見ていきます
- [オブジェクト指向プログラミング](/ja/docs/Learn/JavaScript/Objects/Object-oriented_programming)
- : この記事では、「古典的」オブジェクト指向プログラミングの基本的な原則をいくつか説明し、JavaScript でのプロトタイプモデルとは異なるところを見ていきます。
- [JavaScript でのクラス](/ja/docs/Learn/JavaScript/Objects/Classes_in_JavaScript)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ JavaScript で、`Professor` と `Student` のオブジェクトが `Person` プ

## まとめ

この記事では、プロトタイプオブジェクトチェーンによってオブジェクトが互いに機能を継承する方法、プロトタイププロパティとそれを使ってコンストラクタにメソッドを追加する方法など、JavaScript オブジェクトのプロトタイプを取り上げてきました。
この記事では、プロトタイプオブジェクトチェーンによってオブジェクトが互いに機能を継承する方法、プロトタイププロパティとそれを使ってコンストラクターにメソッドを追加する方法など、JavaScript オブジェクトのプロトタイプを取り上げてきました。

次の記事では、オブジェクト指向プログラミングの基盤となる概念について見ていきます。

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ console.log(`The area of a square with a width of 4 is ${square.area(4)}`);
> [!NOTE]
> モジュールへの絶対パス (または最初に行ったように名前) を指定することもできます。
一度に 1 つのプロパティを構築するのではなく、1 つの割り当てで完全なオブジェクトをエクスポートする場合は、次のように `module.exports` に割り当てます (これを実行して、エクスポートオブジェクトのルートをコンストラクタまたは他の関数にすることもできます)。
一度に 1 つのプロパティを構築するのではなく、1 つの割り当てで完全なオブジェクトをエクスポートする場合は、次のように `module.exports` に割り当てます (これを実行して、エクスポートオブジェクトのルートをコンストラクターまたは他の関数にすることもできます)。

```js
module.exports = {
Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/audiocontext/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const finish = audioCtx.destination;
// etc.
```

## 仕様
## 仕様書

{{Specifications}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ l10n:

{{APIRef("Background Fetch API")}}{{SeeCompatTable}}

コンストラクター **`BackgroundFetchEvent()`** は新しい {{domxref("BackgroundFetchEvent")}} オブジェクトを生成します。このコンストラクタは通常、使用されることはありません。なぜなら、これらのオブジェクトはブラウザーによって自動で生成され、バックグラウンドのフェッチイベントのコールバックに渡されるからです。
コンストラクター **`BackgroundFetchEvent()`** は新しい {{domxref("BackgroundFetchEvent")}} オブジェクトを生成します。このコンストラクターは通常、使用されることはありません。なぜなら、これらのオブジェクトはブラウザーによって自動で生成され、バックグラウンドのフェッチイベントのコールバックに渡されるからです。

## 構文

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/backgroundfetchevent/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ l10n:
## コンストラクター

- {{domxref("BackgroundFetchEvent.BackgroundFetchEvent()", "BackgroundFetchEvent()")}} {{Experimental_Inline}}
- : 新規に `BackgroundFetchEvent` オブジェクトを作成します。通常、このコンストラクタが使用されることはありません。なぜなら、これらのオブジェクトはブラウザーによって自動で生成され、バックグラウンドのフェッチイベントのコールバックに渡されるからです。
- : 新規に `BackgroundFetchEvent` オブジェクトを作成します。通常、このコンストラクターが使用されることはありません。なぜなら、これらのオブジェクトはブラウザーによって自動で生成され、バックグラウンドのフェッチイベントのコールバックに渡されるからです。

## プロパティ

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/client/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ l10n:
- {{domxref("Client.url")}} {{ReadOnlyInline}}
- : 文字列としてのクライアントの URL。

## 仕様
## 仕様書

{{Specifications}}

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/client/type/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ self.addEventListener("message", (e) => {
});
```

## 仕様
## 仕様書

{{Specifications}}

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/client/url/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ self.addEventListener("notificationclick", (event) => {
});
```

## 仕様
## 仕様書

{{Specifications}}

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/crypto/subtle/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ l10n:

{{Specifications}}

## ブラウザーの実装状況
## ブラウザーの互換性

{{Compat}}

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/document/scrollingelement/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const scrollElm = document.scrollingElement;
scrollElm.scrollTop = 0;
```

## 仕様
## 仕様書

{{Specifications}}

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/domexception/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ l10n:
- `NotAllowedError`
- : 現在の状況において、ユーザーエージェントまたはプラットフォームが要求を許可しませんでした。ユーザーが拒否されている可能性があります(古いコードおよび古い定数名はありません)。

## 仕様
## 仕様書

{{Specifications}}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ l10n:

この記事では、ファイルとディレクトリー項目 API の Firefox の実装が、他の実装や仕様とどのように異なるかを記述しています。

## 仕様から外れた Chrome
## 仕様書から外れた Chrome

まだ残っている最大の互換性課題は、Chrome が API 内の多くのインターフェイスに、関連しているものの異なる仕様を実装したため、古い名称を使用していることです。

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/formdata/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ l10n:
> [!NOTE]
> この機能は[ウェブワーカー](/ja/docs/Web/API/Web_Workers_API)で使用できます。
## コンストラクタ
## コンストラクター

- {{domxref("FormData.FormData","FormData()")}}
- : 新しい `FormData` オブジェクトを作成します。
Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/mediarecorder/videobitspersecond/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ l10n:

**videoBitsPerSecond`** は {{domxref("MediaRecorder")}} インターフェイスの読み取り専用プロパティは、使用されている動画エンコーディングのビットレートを返します。

これは、コンストラクタで指定されたビットレートが提供された場合、そのビットレートとは異なる形になる可能性があります。
これは、コンストラクターで指定されたビットレートが提供された場合、そのビットレートとは異なる形になる可能性があります。

##

Expand Down
2 changes: 1 addition & 1 deletion files/ja/web/api/mediarecordererrorevent/error/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function recordStream(stream) {
}
```

## 仕様
## 仕様書

{{Specifications}}

Expand Down

0 comments on commit 0bcb9bc

Please sign in to comment.