DEV Community

Discussion on: I can't say "this sucks" about Javascript...

Collapse
 
adrianhelvik profile image
Adrian

Quick fix:

Object.defineProperty(
  Object.prototype,
  'sucks',
  {
    value: 'Does it?',
    enumerable: false
  }
)
Collapse
 
fluffynuts profile image
Davyd McColl

😂