Skip to content

Instantly share code, notes, and snippets.

@spencerbeggs
Created August 9, 2017 19:10
Show Gist options
  • Save spencerbeggs/9df9c2efebe370b36d608547643691a7 to your computer and use it in GitHub Desktop.
Save spencerbeggs/9df9c2efebe370b36d608547643691a7 to your computer and use it in GitHub Desktop.
Modules
import { myObject } from "./module.js";
// myObject is the SAME object you created on line 1 of module.js
// if you change the value of foo, it will change everywhere you imported it
import { myObject } from "./module.js";
// myObject is the SAME object you created on line 1 of module.js
// if you change the value of foo, it will change everywhere you imported it
export const myObject = {
foo: "bar"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment