Dis bonjour
function sayHello(){
console.log("sayHello");
}
Cruel Chipmunk
function sayHello(){
console.log("sayHello");
}
function throttle( fn, time ) {
var t = 0;
return function() {
var args = arguments, ctx = this;
clearTimeout(t);
t = setTimeout( function() {
fn.apply( ctx, args );
}, time );
};
}