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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T20:04:45+00:00 2026-06-17T20:04:45+00:00

This may seem like a stupid question but I just started learning javascript about

  • 0

This may seem like a stupid question but I just started learning javascript about a week ago. I decided to try and automate my homework with javascript but I can’t figure out how to do this. It works as follows:

You are calculating how many decades it takes for a population to reach a certain number.

We’ll make this simple and make the growth rate .20. The population will start at 50 and we want it to reach 100.

So far this is what I have:

    function newPeople(start, growth) {
    var a = start * growth;
    var b = start + a;
    var c = Math.round(b);
    var d = c * growth;
    var e = c + d;
    var f = Math.round(e);
    return f;
    }

    newPeople(50, .20);

You can see that it can be done manually by creating a new set of variables each time, but how do I automate that?

  • 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-17T20:04:45+00:00Added an answer on June 17, 2026 at 8:04 pm

    This should work:

    // start is the current population
    // growth is the growth rate
    // target is the target population
    function newPeople(start, growth, target) {
    
        var pop = start;
        var years = 0;
        while(pop <= target) {
            years++; // increment year by one
            pop = pop + Math.floor(pop * growth);
        }
    
        // return what you need from the function here
        // "return years;" will give you the number of years it takes to go from "start" to "target"
        // "return pop;" will give you the actual population after "years" number of years
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This may seem like a stupid question, but what message do i send to
This may sound like a stupid question but I can't seem to find an
this may seem like a stupid question, but it is stumping me nontheless. I'm
This may seem like a basic/stupid/obviously-answered question, but I wanted to check: why use
This question may seem like a novice, and perhaps 'stupid' question but please bear
This may seem like a stupid question but is it possible to establish a
This may seem like a stupid question, but what are the symbols used for
Evening guys, This may seem like a stupid question but im having some issues
This may seem like a really easy question to answer, but I'm just a
this may seem like a stupid question but I have a query string which

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.