I have this loop which is uglified and
for (var row = 0; row < dbRows.length; row++) {
dbRows[row].daysList[day].taskid = dbRows[row].taskid;
dbRows[row].daysList[day].activityid = dbRows[row].activityid;
}
}
}
After uglification it becomes this
for (var h = 0; h < b.length; h++)
b[h].daysList[g].taskid = b[h].taskid,
b[h].daysList[g].activityid = b[h].activityid,
so only first line after loop start is executing the other is not working at all.