var myfunc = (function () {
console.log("Hello");
return arguments.callee;
})();
myfunc();var timer;
$('.button').on('click', function () {
clearTimeout(timer);
timer = setTimeout(function() {console.log('TEST')}, 5000);
}); var sum = add(array);