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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T13:07:13+00:00 2026-05-22T13:07:13+00:00

I am creating a script which may be used on a variety of websites.

  • 0

I am creating a script which may be used on a variety of websites. Since I don’t know the circumstances of it’s use, I’d like to be able to place it in a sandbox of sorts, where it does not affect other javascripts on the page, and is in turn not effected by other javascripts.

The most basic start is using a self-invoking function:

(function(){
   x = function(){ alert('hi!');
   x();
})();

But my problem is that if x is already assigned as such, you cannot override it:

x = function(){ alert('too late!');
(function(){
   x = function(){ alert('hi!');
   x();
})();

This will alert “too late!” rather than “hi!”, which is not my desired effect. Can anyone help?

  • 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-22T13:07:13+00:00Added an answer on May 22, 2026 at 1:07 pm

    Don’t forget to use the var statement, if you don’t use it the variable will be declared in the global scope. You’re on the right track though, create your own scope within an immediately executed function. For example:

    var x = function() { alert('foo') };
    (function() {
        var x = function() { alert('bar') }
        x() // 'bar'
    }());
    x() // 'foo'
    

    Going back to your example:

    x = function(){ alert('too late!')};
    (function(){
       x = function(){ alert('hi!')};
       x(); // 'hi'
    })();
    x(); // 'hi'
    

    This will alert ‘hi’ twice, because without the var statement you are working with the same x value in both scopes. If you were to use the var statement inside the self-executing function, the second invocation of x would alert ‘too late!’.

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

Sidebar

Related Questions

I am creating a Python script within which I am executing UNIX system commands.
I have a very large script which is creating multiple views. In a number
I'm creating a bash script that will run a process in the background, which
I am creating a script to read values from csv files and use the
I'm creating a script which creates a random security number for a user, and
I am creating a script which need to parse the yaml output that the
I am creating a validation script which is way more advanced than this little
I am creating a SilkTest script in which am storing a string in a
I'm using SQL Server and creating a script which will get the workers geographical
I have a task of creating a script which takes a huge text file

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.