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

  • Home
  • SEARCH
  • 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 7834411
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T13:08:45+00:00 2026-06-02T13:08:45+00:00

I encountered a strange problem today. The good: I successfully changed a global var

  • 0

I encountered a strange problem today.

The good: I successfully changed a global var value from within a function(in other words the below example works fine when “passedVarName” is substituted with “a”).

The bad: When trying to pass the global var name “a” (rather than putting it directly in the function) it fails to work.

Below is what I can’t seem to get working:

(on click document should write “2” but instead writes “NaN” ?)

Javascript:

  var a = 1;

  function click(passedVarName){

     passedVarName ++;

     document.write(passedVarName)

  };

HTML:

<a href="javascript:click('a')">Click this Button to alter global var "a".</a>
  • 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-02T13:08:46+00:00Added an answer on June 2, 2026 at 1:08 pm

    Passing a global variable as a param to a function creates a copy of that var inside the function. The global doesn’t change.

    This example will generate the same output everytime you click on the first div:

    //html
    <div onclick="foo(a)">Click here</div>
    <div id="txt"></div>​​​​​​​​​​​​​
    //js
    window.a = 152;
    window.foo = function(varr) {varr++; $("#txt").html(varr)}​
    

    However, it seems like if you pass your variable as a property of an object, pass that object to the function, and inside your function modify the variable, it has global effect :

    //html
    <div onclick="foo(a)">Click here</div>
    <div id="txt"></div>​​​​​​​​​​​​​​​​
    //js
    window.a = { val:152};
    window.foo = function(varr) {varr.val++; $("#txt").html(varr.val)}​
    

    Here is a jsFiddle that works: http://jsfiddle.net/2Ahdb/3/

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

Sidebar

Related Questions

Today, I've encountered a strange problem with Groovy code that is run from Maven
I have encountered the strange problem, that linux c++ compiler includes the files from
I encountered a strange problem today. Whenever i put a breakpoint in one of
I have encountered a strange problem where if I call getString(R.string.somestringname) , from time
I encountered strange problem - when Im trying to get User information from SalesForce
We have encountered a very strange class not found problem in our web app
I just encounter a strange problem: var a:ClassA = new ClassA; var b:ClassA =
Today I encountered something strange: I tried to put a utility method into an
I have just encountered very strange problem - my GWT app hosted on Google
I've encountered a strange problem in a Grails webapp running under Grails: java.io.UnsupportedEncodingException is

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.