Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8947411
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T12:45:14+00:00 2026-06-15T12:45:14+00:00

I was reading a post about how to fire a function after a window

  • 0

I was reading a post about how to fire a function after a window resize was complete and came across some examples that assigned self executing anonymous functions to variables:

var delay = (function(){
    var timer = 0;
    return function(callback, ms){
        clearTimeout (timer);
        timer = setTimeout(callback, ms);
    };
})();

$(window).resize(function() {
    delay(function(){
      alert('Resize...');
      //...
    }, 500);
});

What is the difference/benefit of making the function operand self executing as opposed to it’s traditional use? i.e.

var delay = function() { ... 
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T12:45:15+00:00Added an answer on June 15, 2026 at 12:45 pm

    The main reason for this is namespacing variables. Functions introduce a new variable scope. In the case of the above example, timer is not clobbering the global namespace while still being available to the code that needs it.


    Since I apparently need to clarify:

    The goal is to have a variable outside the function:

    var timer;
    
    function delay() {
       // use timer
    }
    

    Because if the variable would be inside the function, it would be reinitialized every time. We want a persistent value outside the function though.

    In the above code timer is a global variable though. We don’t want that. To avoid that, we close the variable up in a new scope so it’s accessible to the delay function, but not globally:

    var delay = (function () {
        var timer;
    
        return function () {
            // use timer
        };
    })();
    

    delay is now a function just as before which can use timer outside itself, yet timer is not in the global scope.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I stumbled across BCrypt.net after reading Jeff Atwood's post about storing passwords which led
I remember reading a blog post about a group that had taken a branch
While reading proggit today, I came upon this comment in a post about how
I was reading a blog-post of Ben Scheirman about some NHibernate tweaks he made
After reading more and more about IoC containers, I read this post about not
After, reading and understanding Dan Benjamin's post about installing Ruby, Rails, etc. on OSX
I was reading up the legal stuffs about Google Map and came across a
I'm reading a post about iPhone programming and I've noticed that the talk about
After reading this post (recommended reading) about not using HTML5Shiv direct from source like
Reading about Http Post on Wikipedia it states that This is a format for

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.