Test cases
Test #1 Title *
Async
Code * const foo = new Array (100 );
for (let i = 0 ; i < foo.length ; i++) {
const bar = foo.length ;
}
Test #2 Title *
Async
Code * const foo = new Array (100 );
const fooLength = foo.length ;
for (let i = 0 ; i < foo.length ; i++) {
const bar = fooLength;
}
Title *
Async
Code * const foo = new Array (1_000 );
for (let i = 0 ; i < foo.length ; i++) {
const bar = foo.length ;
}
Title *
Async
Code * const foo = new Array (1_000 );
const fooLength = foo.length ;
for (let i = 0 ; i < foo.length ; i++) {
const bar = fooLength;
}
Title *
Async
Code * const foo = new Array (10_000 );
for (let i = 0 ; i < foo.length ; i++) {
const bar = foo.length ;
}
Title *
Async
Code * const foo = new Array (10_000 );
const fooLength = foo.length ;
for (let i = 0 ; i < foo.length ; i++) {
const bar = fooLength;
}
Title *
Async
Code * const foo = new Array (100_000 );
for (let i = 0 ; i < foo.length ; i++) {
const bar = foo.length ;
}
Title *
Async
Code * const foo = new Array (100_000 );
const fooLength = foo.length ;
for (let i = 0 ; i < foo.length ; i++) {
const bar = fooLength;
}
Title *
Async
Code * const foo = new Array (1_000_000 );
for (let i = 0 ; i < foo.length ; i++) {
const bar = foo.length ;
}
Title *
Async
Code * const foo = new Array (1_000_000 );
const fooLength = foo.length ;
for (let i = 0 ; i < foo.length ; i++) {
const bar = fooLength;
}