How do you do to remove a "key/value" pair from an object in Hise?
Is there an easy way?
Instead of setting the key or the value to null or undefined?
example:
var Object = {"Wheel1": 23, "Wheel2": 12];
// This will not work
delete Object.Wheel2;
delete Object[Wheel2];