“Di hola” Código de respuesta

Di hola

function sayHello(){
console.log("sayHello");
}
Cruel Chipmunk

Di hola

function throttle( fn, time ) {
    var t = 0;
    return function() {
        var args = arguments, ctx = this;
        clearTimeout(t);

        t = setTimeout( function() {
            fn.apply( ctx, args );
        }, time );
    };
}
Cruel Chipmunk

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código