<html>
<body>
<h1>JavaScript removeEventListener()</h1>
<button onclick="removeHandler()">Remove</button>
<p id="demo"></p>
<script>
document.addEventListener("mousemove", myFunction);
function myFunction() {
document.getElementById("demo").innerHTML = Math.random();
}
function removeHandler() {
document.removeEventListener("mousemove", myFunction);
}
</script>
</body>
</html>