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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T16:34:33+00:00 2026-06-13T16:34:33+00:00

In JavaScript you can define function in a bunch of different ways: function BatmanController

  • 0

In JavaScript you can define function in a bunch of different ways:

function BatmanController () {
}

var BatmanController = function () {
}

// If you want to be EVIL
eval("function BatmanController () {}");

// If you are fancy
(function () {
    function BatmanController () {
    }
}());

By accident I ran across a unexpected behaviour today. When declaring a local variable (in the fancy way) with the same name as function the local variable takes presence inside the local scope. For example:

(function () {
    "use strict";

    function BatmanController () {
    }

    console.log(typeof BatmanController); // outputs "function"

    var RobinController = function () {
    }

    console.log(typeof RobinController); // outputs "function"

    var JokerController = 1;
    function JokerController () {

    }
    console.log(typeof JokerController); // outputs "number", Ehm what?
}());

Anyone know why var JokerController isn’t overwritten by function JokerController? I tested this in Chrome, Safari, Canary, Firefox. I would guess it’s due to some “look ahead” JavaScript optimizing done in the V8 and JägerMonkey engines. But is there any technical explanation to explain this behaviour?

  • 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-13T16:34:34+00:00Added an answer on June 13, 2026 at 4:34 pm

    Because function and variable declarations are hoisted to the top of the scope in which they occur, yet assignments happen in place. Your code is effectively interpreted as this:

    (function () {
        "use strict";
    
        function BatmanController () {} // Declarations are hoisted
        function JokerController () {}
    
        var RobinController, // Declarations are hoisted
            JokerController;
    
        RobinController = function () {} // Assign function to RobinController
    
        // outputs "function" (declaration was hoisted to top of scope)
        console.log(typeof BatmanController);
    
        // outputs "function" (assignment of number hasn't happened yet)
        console.log(typeof RobinController);
    
        JokerController = 1; // Assign number to JokerController
    
         // outputs "number" (assignment of number has now happened)
        console.log(typeof JokerController);
    }());
    

    For the full technical details I suggest you read section 10.5 of the spec.

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

Sidebar

Related Questions

While writing javascript, one can define a method in 3 different ways. 1] A
How can I define a function's prototype in JavaScript? I want to do this
i saw a function can be define in javascript like var square = function(number)
In JavaScript, you can define anonymous functions that are executed immediately: (function () {
I know that there are several ways to define a function in JavaScript. Two
When key name starts with digit, in javascript we can define array-like object like
Javascript can't handle my longs, so I want RestEasy to wrap them with quotation
Possible Duplicate: JavaScript: var functionName = function() {} vs function functionName() {} What is
I want to replicate any given Javascript loop , class , function to into
Hi How can I define a function on button click in HTML, I tried

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.