On DevTools, I can delete specific event Listener using the DevTools feature.
However, I don't know how to delete it in JS without using this feature.
If there is an event Listener object in the current scope, I can delete it with the removeEventListener function, but the object does not exist.
For example, I tried to delete the b event but failed because there was no b.
How to delete specific event Listener in JS?