var buttons = { foo: 'bar', fiz: 'buz' }; for ( var property in buttons ) { console.log( property ); // Outputs: foo, fiz or fiz, foo }