Removing the event listeners in Javascript

54 Views Asked by At

When a button is clicked and a function is executed which is consisting of sub-functions and event listeners. Consider this:

function init() {
  canvas = document.getElementById("canvas");
  context = canvas.getContext('2d');
  context.strokeStyle = 'purple';
  context.lineWidth = 6;
  context.lineCap = 'round';
  canvas.addEventListener('mousedown', dragStart);
  canvas.addEventListener('mousemove', drag);
  canvas.addEventListener('mouseup', dragStop);
}

Is there a way to remove this event listeners as soon as the function exited or when another function is called?

0

There are 0 best solutions below