From 65f6277e24643a3079baa8c2ec29377c570761fa Mon Sep 17 00:00:00 2001 From: Fridge0 Date: Thu, 19 Oct 2023 14:27:37 +0900 Subject: [PATCH] =?UTF-8?q?=E8=AA=A4=E5=AD=97=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/1-trial-session/10-array/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1-trial-session/10-array/index.md b/docs/1-trial-session/10-array/index.md index a04c6fd78..2d9ebfad9 100644 --- a/docs/1-trial-session/10-array/index.md +++ b/docs/1-trial-session/10-array/index.md @@ -96,7 +96,7 @@ document.write(numbers.length); // 10 ### `配列.push` 関数 -[`関数.push`関数](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Array/push) は、指定した配列の末尾に新しい値を追加する関数です。 +[`配列.push` 関数](https://developer.mozilla.org/ja/docs/Web/JavaScript/Reference/Global_Objects/Array/push) は、指定した配列の末尾に新しい値を追加する関数です。 ```javascript const studentNames = ["田中", "佐藤", "鈴木"];