Skip to content

Commit

Permalink
2023/11/04 時点の英語版に基づき更新
Browse files Browse the repository at this point in the history
  • Loading branch information
mfuji09 committed Oct 14, 2024
1 parent f00f770 commit 843c412
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.lastIndexOf()
slug: Web/JavaScript/Reference/Global_Objects/String/lastIndexOf
l10n:
sourceCommit: be500eeadf5eba4722689ce9b150c506e8a9c7fa
sourceCommit: c607c483fe079c61de5e32fba1a6cce61896e97d
---

{{JSRef}}

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

{{EmbedInteractiveExample("pages/js/string-lastindexof.html", "shorter")}}
{{EmbedInteractiveExample("pages/js/string-lastindexof.html")}}

## 構文

Expand Down Expand Up @@ -65,7 +65,7 @@ lastIndexOf(searchString, position)

### indexOf() と lastIndexOf() の使用

以下の例は、 {{jsxref("String.prototype.indexOf()", "indexOf()")}} と `lastIndexOf()` を使用して文字列 `"Brave, Brave New World"` の中の値の位置を示します。
以下の例は、 {{jsxref("String/indexOf", "indexOf()")}} と `lastIndexOf()` を使用して文字列 `"Brave, Brave New World"` の中の値の位置を示します。

```js
const anyString = "Brave, Brave New World";
Expand Down

0 comments on commit 843c412

Please sign in to comment.