How to delete a flow variable from a `function` node

It’s not the most logical approach, but with some understanding of core JavaScript/core Node-RED logic it makes more sense: by setting it to undefined.

flow.set('example', undefined);

1 Like