Add let before variable declaration

This commit is contained in:
Ujjwal Sharma 2018-10-05 22:59:31 +05:30 committed by Rick Waldron
parent ec35b59e88
commit f8e3a8ed11
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}