I\'m having trouble looping through an object and changing all the values to something else, let\'s say I want to change all the values to the string \"redacted\". I need to
Use a proxy:
function superSecret(spy) { return new Proxy(spy, { get() { return "redacted"; } }); } > superSecret(spy).id < "redacted"