CpuHigherLower/game.js

15 lines
205 B
JavaScript
Raw Normal View History

2023-04-11 12:15:56 +02:00
async function main() {
var cpuList;
await fetch('./data.json')
.then((response) => response.json())
.then((json) => cpuList = json);
}
function getRandomCpu() {
}
main();