var jsonJSON = UrlFetchApp.fetch("https://wowtoken.info/snapshot.json");
var json = Utilities.jsonParse(jsonJSON.getContentText());
var max24 = json.NA.formatted.24max;
I'm sure my code is sloppy but, I'm getting "Missing ; before statement." from the bottom line. It goes away when I remove the '24', but the source itself has '24max'.
Is there a way to have javascript ignore the 24 after the period? Or are the top two lines of code wrong?