Can we squeeze bear/bare (the verbs) in there?
something.onclick = function(){...};
you're passing a function around just like it was any other value. function giveMeAnAdder(baseNumber) {
return function (i) {
return baseNumber + i;
};
}
with a couple of examples of storing and using the functions that giveMeAnAdder returns.