Here's an alternative way to do this that might work for you:
var employee = [];
var numEmpl = 100;
for(var i = 0; i < numEmpl; i++)
employee[i] = {'hours' : 0, 'overtime' : 0, 'income' : 0, 'expenditure' : 0};
The code above gives you an array of objects, one for each employee. Each object (employee) can be accessed individually:
employee[20].overtime = 10;
console.log(employee[20].overtime)
:
employee[30] = {'hours' : 45, 'overtime' : 5, 'income' : 1000, 'expenditure' : 0}
console.log(employee[30].overtime)
, :
employee.push({'hours' : 0, 'overtime' : 0, 'income' : 0, 'expenditure' : 0})