It's very cool that the new ECMAScript modules/import syntax allow me to pull in more than just Javascript; no more having to read in a file as a string and then parsing the JSON from that. Just one problem: I can never remember the syntax, even though I use it all the time. So, hi Jeremia in the future. Here's how you import a JSON file directly into a Javascript file assuming your file is called data.json, lives next to your script, and you want the variable to be called data. import data f...