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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:49:28+00:00 2026-06-14T02:49:28+00:00

I have a variable defined at the top of my function and a JSON

  • 0

I have a variable defined at the top of my function and a JSON object referencing that variable directly beneath that. A click event, a few loops and an anonymous functions later I update the value of the first variable then reference the JSON object’s property expecting it to have the new value, but this does not work.

My code looks something like this:

var errorval = "Not set";
var rules = {
    firstRule : {
        name : 'example',
        message : 'Needs to be '+errorval+' characters long'
    }
}
$('.button').on('click', function(){
    for(var foo in bar) {
        $.each(foo, function(){
            errorval = 3;
            // ALERTS "Needs to be Not set characters long"
            alert(rules.firstRule.message);
        });
    }
});

So I’m asking how I can update errorval at this point in my code so that the rules object has that new value in the message property.

  • 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-14T02:49:30+00:00Added an answer on June 14, 2026 at 2:49 am

    This might solve your issue

    var errorval = "Not set";
    var rules = {
        firstRule : {
            name : 'example',
            getMessage : function() {
              return 'Needs to be '+errorval+' characters long';
            }
        }
    }
    $('.button').on('click', function(){
        for(var foo in bar) {
            $.each(foo, function(){
                errorval = 3;
                // ALERTS "Needs to be Not set characters long"
                alert(rules.firstRule.getMessage());
            });
        }
    });
    

    Instead of a string property, you call the getMessage method which returns a string based on the current value of errorval

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

Sidebar

Related Questions

I have to extract defined variable and function names from a js code passed
I have a function, where if a variable is not defined, exit; is called,
I have some pagination code defined in a variable ($pager) that I would like
Let's say that I have a global variable defined in App.xaml.cs as follows: public
I have a variable defined at the top of my jsp page: <%! int
I have this variable defined in my web.config file : <appSettings> <add key =version
I have an variable obj defined as follows: {user: {username: AzureDiamond, password: hunter2}} I
I need to mock a GrailsControllerClass interface. Instance should have a static variable defined.
I have defined a variable with an own type, say Dim point As DataPoint
I have a variable @products = Product.all defined inside new method in a controller.

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.