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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:05:31+00:00 2026-05-27T07:05:31+00:00

I am new to CoffeeScript (and rather inexperienced with JS too; so sorry if

  • 0

I am new to CoffeeScript (and rather inexperienced with JS too; so sorry if this is naive) and I was trying to create a class as below:

class Test
   a: []

   make: ->
       @a.push ['A', 'B', 'C']

   getdata: ->
       output = ""
       for i in @a
          output += i
       output

b = new Test
b.make()

alert(b.getdata())


c = new Test
c.make()

alert(c.getdata())

The output I get is:
“A, B, C”
“A, B, C, A, B, C”

Despite create a new instance of ‘Test’; the array gets appended over and is not cleared. What am I doing wrong here? Am I initializing the member variable wrong?

  • 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-27T07:05:32+00:00Added an answer on May 27, 2026 at 7:05 am

    When you define a: [], you’re creating a single array object on the class prototype. Each instance of the class that you create will have this same array object. Whenever one instance modifies the value, the change is visible to all the others.

    Note that this is only the case if you modify a value, such as by adding items to an array. If you replace the value, for example by assigning a new array, this will only affect the current instance.

    When you want a property that’s initialized on a per-instance basis you should to define it in the constructor, when the instance is actually created:

    class Test
       constructor: ->
           @a = []
           @a.push ['A', 'B', 'C']
    
       getdata: ->
           output = ""
           for i in @a
              output += i
           output
    
    b = new Test
    
    alert(b.getdata())
    
    
    c = new Test
    
    alert(c.getdata())
    

    Try this out and you’ll find that it works like you want.

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

Sidebar

Related Questions

Trying to understand how CoffeeScript instance and class variable works I came with this
I am quite new to vim and I am trying to edit coffeescript. Whenever
I am trying to get a CoffeeScript class to extend a Backbone.Model. I built
I am new to CoffeeScript and am trying to get a feel for the
I'm trying to build a way to do PHPUnit-style test case classes in CoffeeScript.
When I create a new coffeescript file, I cannot access the code in the
I am very new to coffeescript, and I have been trying to find a
I'm new to Coffeescript and I'm having trouble turning this Javascript: Handlebars.registerHelper(debug, function(optionalValue) {
New class is a subclass of the original object It needs to be php4
New to javascript/jquery and having a hard time with using this or $(this) to

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.