I have an object, let's call it obj, it looks like this:
const obj = {
  key: "value"
}
Now I want to do something when a property is set. I heard about setters, that I can use by doing:
const obj = {
   set key(e) {
     console.log("Property key has been set!")
   }
}
But I want to do this, for any property... Like instead of only for key, it would be for anything, example:
obj.SomeKey = "value"
Should log "Property key has been set!"
and it would be the same for any property...
Is there a way in JavaScript to do this? Thanks
 
    