how to terminate a .on in javascript code example
Example 1: how to terminate a program in js
process.exit(1)
Example 2: in javascipt how to stop further page processing
if(someEventHappened) return; // Will prevent subsequent code from being executed
alert("This alert will never be shown.");