[-] windows6@lemm.ee 1 points 3 years ago

No word of including these maps in the game itself?

[-] windows6@lemm.ee 1 points 3 years ago

Will these maps be released to be within the game. I am on xbox

4
submitted 3 years ago by windows6@lemm.ee to c/halo@lemmy.world

I do not see these maps in my custom games menu in MCC Halo 3 and I did download the update for July.

1

How does one fetch some JSON data and save it into a variable and not continue executing the rest of the script until the fetch api has fetch the JSON data?

Here is my code which will return undefined in the console.

var myVar;

fetch("myFile.json")
	.then(res => res.json())
	.then(data => {
	myVar = data;
});
	
console.log(myVar)

//rest of code executes...

windows6

0 post score
0 comment score
joined 3 years ago