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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T03:30:52+00:00 2026-06-13T03:30:52+00:00

JavaScript I’ve tried searching for something like this, but I am not able to

  • 0

JavaScript

I’ve tried searching for something like this, but I am not able to find it.

It’s a simple idea:

a. Take a random number between 0 to 10.

b. Let’s say the random number rolled is a 3.

c. Then, save the number (the 3).

d. Now, take another random number again between 0 to 10, but it can’t be the 3, because it has already appeared.

  • 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-13T03:30:53+00:00Added an answer on June 13, 2026 at 3:30 am

    One solution is to generate an array (a “bucket”) with all the values you want to pick, in this case all numbers from 0 to 10. Then you pick one randomly from the array and remove it from the bucket. Note that the example below doesn’t check if the bucket is empty, so if you call the function below more than 10 times you will get an error.

    var bucket = [];
    
    for (var i=0;i<=10;i++) {
        bucket.push(i);
    }
    
    function getRandomFromBucket() {
       var randomIndex = Math.floor(Math.random()*bucket.length);
       return bucket.splice(randomIndex, 1)[0];
    }
    
    // will pick a random number between 0 and 10, and can be called 10 times
    console.log(getRandomFromBucket());
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

JavaScript is purported to have first-class functions, so this seems like the following ought
Javascript functions can be declared on a objects prototype like this: <object name>.prototype.<variable name>=function(){
Javascript passes objects by reference. This makes perfect sense. But once you start manipulating
javascript code shows error in Internet Explorer but not in FF. $(document).ready(function(){ var countries
Javascript provides us nice functions like toLocaleString , toLocaleTimeString etc. But I'm wondering -
JavaScript executes for a computer but not for a iPad. I am not sure
JavaScript/JQuery var arr=[]; $('.element').each(function(i) { arr.push({id:i,value:$(this).attr('data-value')}); }); $.get('/json.php?arr='+arr,function(result) { alert(result); }); PHP <?php $j
Javascript is pretty shaky for me, and I can't seem to find the answer
javascript with> var customer=document.getElementById('custList').value; and that works... Why does it work BUT... var customer=(form1.custList.value);
JavaScript converts my < into &gt; . I want to alert it but my

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.