CpuHigherLower/gst.js

24 lines
615 B
JavaScript
Raw Normal View History

2023-04-12 09:00:36 +02:00
var cpuList;
async function main() {
await fetch('./data.json')
.then((response) => response.json())
.then((json) => cpuList = json);
console.log(getRandomCpu().name)
}
function getRandomCpu() {
let randomIndex = getRandomInt(0, cpuList.length)
return {
name: cpuList[randomIndex]["name"].split('@')[0],
score: cpuList[randomIndex]["cpuScore"]
}
}
function getRandomInt(min, max) {
min = Math.ceil(min);
max = Math.floor(max);
return Math.floor(Math.random() * (max - min) + min); // The maximum is exclusive and the minimum is inclusive
}
main();