mirror of
https://github.com/tc39/test262.git
synced 2025-07-26 23:44:27 +02:00
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);
|
const nf = new Intl.NumberFormat(proxyLocales);
|
||||||
|
|
||||||
assert.sameValue(actualLookups.length, locales.length);
|
assert.sameValue(actualLookups.length, locales.length);
|
||||||
for (index in actualLookups) {
|
for (let index in actualLookups) {
|
||||||
assert.sameValue(actualLookups[index], String(index));
|
assert.sameValue(actualLookups[index], String(index));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user