let sum = 0;
for(let i = 0; i < 1000; i++) {
let a = {}
for(let i = 0; i < 19; i++) {
a["a" + (i + 0.1)] = Math.random();
}
for(const prop in a) {
sum += a[prop]
}
}
let sum = 0;
for(let i = 0; i < 1000; i++) {
let a = {};
for(let i = 0; i < 19; i++) {
a["a" + Math.random()] = i + 0.1;
}
for(const prop in a) {
sum += a[prop]
}
}