Javascript throttle & debounce

Source: Internet
Author: User
Throttle

Ignoring all calls within a certain period of time is suitable for use when the frequency is high and the processing is heavy.

var throttle = function (func, threshold, alt) {    var last = Date.now();    threshold = threshold || 100;    return function () {        var now = Date.now();        if (now - last < threshold) {            if (alt) {                alt.apply(this, arguments);            }            return;        }        last = now;        func.apply(this, arguments);    };};

Debounce

The called method is executed only when no call is made within a certain interval.

var debounce = function (func, threshold, execASAP) {    var timeout = null;    threshold = threshold || 100;    return function () {        var self = this;        var args = arguments;        var delayed = function () {            if (!execASAP) {                func.apply(self, args);            }            timeout = null;        };        if (timeout) {            clearTimeout(timeout);        } else if (execASAP) {            func.apply(self, args);        }        timeout = setTimeout(delayed, threshold);    };};

Test
var test = function (wrapper, threshold) {    var log = function () {        console.log(Date.now() - start);    };    var wrapperedFunc = wrapper(log, threshold);    var start = Date.now();    var arr = [];    for (var i = 0; i < 10; i++) {        arr.push(wrapperedFunc);    }    while(i > 0) {        var random = Math.random() * 1000;        console.log('index: ' + i);        console.log('random: ' + random);        setTimeout(arr[--i], random);    }};test(debounce, 1000);test(throttle, 1000);
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.