Updated JScript Enumerator (markdown)

Namhyeon Go 2022-01-25 12:13:14 +09:00
parent 6c95a075cd
commit 09529aeb61

@ -2,7 +2,7 @@
JScript has a class called Enumerator. This shows a small difference from the standard JavaScript.
For example, 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 marked as `unknown`, so it must be converted appropriately.
### Convert MS/JScript Enumerator to JSObject