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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T11:06:53+00:00 2026-05-25T11:06:53+00:00

The small demo below illustrates my problem: // 1 – Define a global reference

  • 0

The small demo below illustrates my problem:

// 1 - Define a global reference to classA
(function() {
    window.classA = new ClassA();
})();

// 2 - ClassA object definition
function ClassA() {
    this.test1 = function() {
        document.write('test1');
    };
}

// 3 - ClassA inherits Array and has a test function
ClassA.prototype = new Array;
ClassA.prototype.test2 = function() {
    document.write(this[0]);
}

// 4 - Test our ClassA
var c = new ClassA();
c.test1();
c.push('test2');
c.test2();

// 5 - Test our global ClassA
classA.test1();
classA.push('test2'); // doesn't work
classA.test2(); // doesn't work

Try it here: http://jsfiddle.net/SPSW4/

What is the proper way to define a global variable classA (ClassA instance)?

  • 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-25T11:06:54+00:00Added an answer on May 25, 2026 at 11:06 am

    Your code appears to be binding the global classA variable before ClassA is fully defined. I believe you will have more luck if you do it like:

    // 1 - define ClassA 
    window.ClassA = function() {
        this.test1 = function() {
            document.write('test1');
        };
    };
    ClassA.prototype = new Array;
    ClassA.prototype.test2 = function() {
        document.write(this[0]);
    }
    
    // 2 - Define a global reference to classA
    window.classA = new ClassA();
    
    // 3 - Test our ClassA
    var c = new ClassA();
    c.test1();
    c.push('test2');
    c.test2();
    
    // 4 - Test our global ClassA
    classA.test1();
    classA.push('test2'); // doesn't work
    classA.test2(); // doesn't work
    

    Here’s an example: http://jsfiddle.net/SPSW4/2/

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

Sidebar

Related Questions

i have been working on a small demo and i wrote a function which
I need to write a small demo to send and serve a SOAP function,
Note : Below is just a small demo sort to simulate what i am
One small function of a large program examines assemblies in a folder and replaces
I have a small JS function that does Ajax for me and another like
I am implementing a small demo application which encrypts using AES CTR with OpenSSL
Small pet peev. When creating new visual studio projects is there any way to
I'm writing a small demo application in Java using Spring, that needs to have
I plan to write a small demo app that allows several players to exchange
I have a very complex DOM structure, A small for example or say demo

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.