mirror of https://github.com/tc39/test262.git
Add let before variable declaration
This commit is contained in:
parent
ec35b59e88
commit
f8e3a8ed11
|
@ -34,6 +34,6 @@ const proxyLocales = new Proxy(locales, handlers);
|
|||
const nf = new Intl.NumberFormat(proxyLocales);
|
||||
|
||||
assert.sameValue(actualLookups.length, locales.length);
|
||||
for (index in actualLookups) {
|
||||
for (let index in actualLookups) {
|
||||
assert.sameValue(actualLookups[index], String(index));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue