init commit
This commit is contained in:
@@ -0,0 +1,71 @@
|
||||
|
||||
//function userPrompt() {
|
||||
|
||||
let size = prompt("Please enter the lottery size you\'d like:");
|
||||
|
||||
console.log(size);
|
||||
|
||||
function clickRegistered() {
|
||||
|
||||
console.log("Click registered, printing to console.");
|
||||
|
||||
}
|
||||
|
||||
//}
|
||||
|
||||
|
||||
/*
|
||||
const playButton = document.querySelector("#playbutton")
|
||||
|
||||
function userPrompt() {
|
||||
|
||||
let size = prompt("Please enter the lottery size you\'d like:");
|
||||
|
||||
if((size == null) || (size < 1) || (size < 10)) {
|
||||
|
||||
userPrompt();
|
||||
|
||||
} else {
|
||||
|
||||
createArray(size);
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function createArray(size) {
|
||||
|
||||
const lotteryPool = [];
|
||||
|
||||
for(let i = 0; i < size; i ++) {
|
||||
|
||||
lotteryPool[i] = Math.floor(Math.random() * 100);
|
||||
|
||||
}
|
||||
|
||||
displayOutput(lotteryPool);
|
||||
|
||||
}
|
||||
|
||||
function displayOutput(lotteryPool) {
|
||||
|
||||
let result = "";
|
||||
|
||||
for(let i = 0; i < lotteryPool.length; i++) {
|
||||
|
||||
if(i < lotteryPool.length - 1) {
|
||||
|
||||
result += lotteryPool[i] + "-";
|
||||
|
||||
} else {
|
||||
|
||||
result += lotteryPool[i];
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
document.getElementById("output").innerHtml = result;
|
||||
|
||||
}
|
||||
*/
|
||||
@@ -0,0 +1,61 @@
|
||||
const size = prompt("Please enter the size of the lottery pool:");
|
||||
|
||||
const lotteryValues = [];
|
||||
|
||||
window.onLoad = start();
|
||||
|
||||
function start() {
|
||||
|
||||
createArray();
|
||||
|
||||
}
|
||||
|
||||
function refresh() {
|
||||
|
||||
createArray();
|
||||
|
||||
}
|
||||
|
||||
function createArray() {
|
||||
|
||||
for(let i = 0; i < size; i++) {
|
||||
|
||||
lotteryValues[i] = getRandomInt();
|
||||
|
||||
}
|
||||
|
||||
generateOutput();
|
||||
|
||||
}
|
||||
|
||||
function generateOutput() {
|
||||
|
||||
let output = "";
|
||||
|
||||
for(let i = 0; i < lotteryValues.length; i++) {
|
||||
|
||||
output += lotteryValues[i];
|
||||
|
||||
if(i < lotteryValues.length - 1) {
|
||||
|
||||
output += "-";
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
document.getElementById("output").innerHTML = output
|
||||
|
||||
}
|
||||
|
||||
function getRandomInt() {
|
||||
|
||||
let min = 1;
|
||||
let max = 100;
|
||||
|
||||
min = Math.ceil(min);
|
||||
max = Math.floor(max);
|
||||
|
||||
return Math.floor(Math.random() * (max - min) + min);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user