From dca06c10465eb2588ec033f91fe45838c416084e Mon Sep 17 00:00:00 2001 From: "Namhyeon, Go" Date: Tue, 25 Jan 2022 12:14:33 +0900 Subject: [PATCH] Updated JScript Enumerator (markdown) --- JScript-Enumerator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/JScript-Enumerator.md b/JScript-Enumerator.md index 9f3d961..e36caaf 100644 --- a/JScript-Enumerator.md +++ b/JScript-Enumerator.md @@ -2,7 +2,7 @@ JScript has a class called Enumerator. This shows a small difference from the standard JavaScript. -For example, when accessing the value of an array, it is expressed as `arr(i)` instead of `arr[i]`. In this case, the type of array in JScript is marked as `unknown`, so it must be converted appropriately. +For example, when accessing the value of an array, it is expressed as `arr(i)` instead of `arr[i]`. In this case, the type of array in JScript is displayed as unknown, so in some cases, it has to be converted appropriately. ### Convert MS/JScript Enumerator to JSObject