BITWISE OR in JAVASCRIPT
C.R.E.A.M.
JavaScript
var $_cash_Rules_Everything_Around_Me_$ = {
a: 5,
b: 2,
c: 9
};
// bitwise OR
for (var key in $_cash_Rules_Everything_Around_Me_$) {
console.log(key, $_cash_Rules_Everything_Around_Me_$[key]|2)
}