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 9010277
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T02:24:49+00:00 2026-06-16T02:24:49+00:00

I was looking at the code for the underscore.js library (jQuery does the same

  • 0

I was looking at the code for the underscore.js library (jQuery does the same thing) and just wanted some clarification on why the window object is getting passed into the self executing function.

For example:

(function() {            //Line 6
  var root = this;       //Line 12
  //Bunch of code
}).call(this);           //Very Bottom

Since this is global, why is it being passed into the function? Wouldn’t the following work as well? What issues would arrise doing it this way?

(function() {
  var root = this;
  //Bunch of code
}).call();
  • 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-16T02:24:50+00:00Added an answer on June 16, 2026 at 2:24 am

    I suspect the reason is ECMAScript 5 strict mode.

    In non-strict mode, this IIFE

    (function() {
       console.log(this); // window or global
    })();
    

    logs the window object (or the global object, if you’re on a node.js server), because the global object is supplied as this to functions that don’t run as a method of an object.

    Compare that result to

    "use strict";
    (function() {
       console.log(this); // undefined
    })();
    

    In strict mode, the this of a bare-invoked function is undefined. Therefore, the Underscore authors use call to supply an explicit this to the anonymous function so that it is standardized across strict and non-strict mode. Simply invoking the function (as I did in my examples) or using .call() leads to an inconsistency that can be solved with .call(this).

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

Sidebar

Related Questions

I was looking at the source code for the Underscore.js library, specifically for the
I was just looking at the CodeIgniter source code and I came across a
I have some old school looking code that is as follows: IList<KeyValuePair<string, ValuePair>> ServicePairs
I've just been looking at the _.isEqual function of Underscore.js and a section of
Is this a convention of some sort? I'm looking through some code, and at
How to make this subqueries to good-looking code? And I looking guides about SQL
I really love SyntaxHighter - it turns out the poshest looking code around. Unfortunately
I'm looking at code, and I'm not certain of its functionality. I looked at
I am looking to code me a banner management system that has users make
Sometime when looking through code, I see many methods specify an annotation: @SuppressWarnings(unchecked) What

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.