Skip to content

Commit

Permalink
2023/11/29 時点の英語版に基づき更新
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 10, 2024
1 parent 3df11f8 commit 541ab54
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
title: String.prototype.indexOf()
slug: Web/JavaScript/Reference/Global_Objects/String/indexOf
l10n:
sourceCommit: 6bd17cb9cbc2d11163617b9f71706e93fdd743c8
sourceCommit: c367939020b2cbd60da7bd56a14670659d5e9491
---

{{JSRef}}

**`indexOf()`** は {{jsxref("String")}} 値のメソッドで、この文字列を検索し、指定した部分文字列が最初に出現するインデックスを返します。 オプションで開始位置を取り、指定した数値以上のインデックスで指定した部分文字列が最初に出現するインデックスを返します。

{{EmbedInteractiveExample("pages/js/string-indexof.html")}}
{{EmbedInteractiveExample("pages/js/string-indexof.html", "taller")}}

## 構文

Expand Down Expand Up @@ -107,7 +107,7 @@ console.log(str.indexOf("new")); // 6

以下の例は 2 つの文字列の変数を定義しています。

それらの変数は、2 番目の文字列が大文字を含んでいることを除けば、同じ文字列を含んでいます。1 番目の {{domxref("console.log()")}} メソッドは `19` を表示します。しかし、`indexOf()` メソッドは大文字と小文字を区別するので、`"cheddar"` という文字列は `myCapString` では見つけられません。ですから、 `console.log()` メソッドは `-1` を表示します。
それらの変数は、2 番目の文字列が大文字を含んでいることを除けば、同じ文字列を含んでいます。1 番目の {{domxref("console/log_static", "console.log()")}} メソッドは `19` を表示します。しかし、`indexOf()` メソッドは大文字と小文字を区別するので、`"cheddar"` という文字列は `myCapString` では見つけられません。ですから、 `console.log()` メソッドは `-1` を表示します。

```js
const myString = "brie, pepper jack, cheddar";
Expand Down

0 comments on commit 541ab54

Please sign in to comment.