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

  • SEARCH
  • Home
  • 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 7177683
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T16:45:55+00:00 2026-05-28T16:45:55+00:00

I see no situation where I need this (function(param){ alert(param); //do something })(derp); istead

  • 0

I see no situation where I need this

(function(param){
alert(param);
//do something
})("derp");

istead of this

alert("derp");
//do something

EDIT: ok, thanks everybody, i think i got it.
so if you have this:

var param = "x";
var heya = "y";

(function(param){
    alert(param);
    //do something
    })(heya);

the global variable “param” will be ignored in the scope of the anonymous 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-05-28T16:45:55+00:00Added an answer on May 28, 2026 at 4:45 pm

    How about this scenario?

    Example #1 – Uses an Immediately Invoked Function Expression that closes over a single variable and returns another function. Resulting in a beautiful, encapulated function.

    var tick = (function () {
       //Example of function expression + closure
       var tock = 0;
    
       return function() {
            return ++tock;
       }
    }());
    
    //It is impossible to alter `tock` other than using tick()
    tick(); //1
    tick(); //2
    tick(); //3
    tick(); //4
    

    VERSUS

    Example #2 – Uses a Function Declaration w/ a global variable

    //Unnecssary global (unless wrapped in another function, such as jQuery's ready function)
    var tock = 0;
    
    function tick() {
        return ++tock;
    }
    
    tick(); //1
    tock = 4; //tock is exposed... and can be manipulated
    tick(); //5
    tock = 6;
    tick(); //7
    

    It is a contrived example but still a real case scenario in situations where people may want to generate consecutive UNIQUE ID’s with no possibility of collision.

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

Sidebar

Related Questions

So, I have this situation where I need to see if an object is
I'm in a situation where I think I need to create my own custom
This seems so tricky to me that I think I am overlooking something simple
I see this question asked a lot in the related questions, but my need
See title. By lightweight markup I mean something like markdown or wikitext.
See title: what does it mean for a C++ function to be inline?
I'm in a situation where I've got a project that has a large number
I am in a situation where I need to send authentication (basic HTTP Authentication)
I have a situation where I need to know when the user of a
for short, this could be paraphrased like inheritance versus function library for example, I'd

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.