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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T15:46:19+00:00 2026-06-15T15:46:19+00:00

I am sure this is very simple but I can’t get seem to get

  • 0

I am sure this is very simple but I can’t get seem to get this to work just right. Here is my code:

var zero = 10;

function some(elem, num) {
    return elem += num;
}

console.log(some(zero, 10));
console.log(some(zero, 10));
console.log(some(zero, 10));

From what I understand, I was expecting the variable in zero to increase each time by 10.. So, it would be 10, 20 and 30. Instead, I keep getting 10. Obviously, this isn’t right.

My question is, how would I increase the variable zero by 10 each time and save that value back to the variable zero?

  • 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-15T15:46:20+00:00Added an answer on June 15, 2026 at 3:46 pm

    JavaScript passes by value, so modifying the passed value won’t have any effect on the caller’s variable. You’d need to use the return value:

    var zero = 10;
    
    function sum(elem, num) {
        return elem + num;
    }
    
    console.log(zero = sum(zero, 10));
    console.log(zero = sum(zero, 10));
    console.log(zero = sum(zero, 10));
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm sure this has a very simple answer, but I can't seem to find
This is probably a very simple question but I just can't seem to figure
I'm sure this is painfully simple but I just can seem to find it.
I'm sure this is a very simple question, but embarrassed to say I can't
I'm sure this is a very simple fix but I cannot seem to find
I'm sure this is very simple. I have gotten colorbox to work before, but
This may be something very easy but i can't seem to get this to
I have a feeling that this question is very simple, but I just can't
I'm sure this is something very simple but I can't figure it out. I've
I have what I'm sure is a very simple problem but I can't work

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.