If I call the function once like this
var button = document.querySelector('button');
button.addEventListener('click', once);
function once() {
  console.log('one');
  button.removeEventListener('click', once);
}
It's calling only once.
But if I called like this once()
var button = document.querySelector('button');
button.addEventListener('click', once());
function once() {
  console.log('one');
  button.removeEventListener('click', once());
}
Exception throws
Exception: InternalError: too much recursion
Could you please explain why this is happening.
 
     
     
     
    