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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T00:16:20+00:00 2026-06-08T00:16:20+00:00

Say I have an object: var myObj = function { this.count = 0; }

  • 0

Say I have an object:

var myObj = function {
this.count = 0;
}

myObj.prototype {
   setCount : function() {
       var interval = setInterval(function() {
           this.count++;
       }, 500);
   }
}

The issue is count is always undefined within the setInterval so i can never increment the count variable within myObj to be something other than 0.

  • 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-08T00:16:22+00:00Added an answer on June 8, 2026 at 12:16 am

    this changes depending on the function being called (and how it said function is called).

    The anonymous function you pass to setInterval is a different function.

    Copy the value to a non-magic variable first.

       setCount : function() {
           var that = this;
           var interval = setInterval(function() {
               that.count++;
           }, 500);
    

    See the this problem in the documentation.

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

Sidebar

Related Questions

Let's say I have a JavaScript object: function a(){ var A = []; this.length
Lets say I have a Javascript object: var myObj = { property1 : 20,
Let's say we have an object with this format: var thisIsObject= { 'Cow' :
Say I have a collection of object arrays of equal dimension, like this: var
Let's say you have a JavaScript class like this var DepartmentFactory = function(data) {
if I have a JSON object say: var myObj = {'test' : {'key1' :
Say I have this JSON object: var images = {success:true, images:[ {id:1234,url:asdf,tags:[cookie,chocolate]}, {id:5678,url:qwer,tags:[pie,pumpkin]} ]};
Let's say that I have a object that looks like this var object =
I have the object: var IOBreadcrumb = function () { this.breadcrumbs = []; this.add
I have this object var X = { a:function(args){ }, b:function(args){ }, c: ......

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.