Settings

Theme

A Classic JavaScript Interview Question

medium.com

5 points by chcokr 11 years ago · 1 comment

Reader

eastbayjake 11 years ago

I like your IIFE there. It's more elegant than the way I usually see this one fixed:

  for (var i = 0; i < domElems.length; ++i) {
    domElems[i].onclick = clickHandler(i);
  }

  function clickHandler(n){
    return function(){
      console.log(n);
    };
  }

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection