Use object literals to initialize or set your object attributes.

Instead of

Initech.legalForm = 'corporation';
Initech.workEnvironment = 'cubeFarm';
Initech.coffee = 'lousy';

write

Initech = {
  legalForm : 'corporation',
  workEnvironment : 'cubeFarm',
  coffee : 'lousy'
};