Skip to content

Instantly share code, notes, and snippets.

@Violet-Bora-Lee
Created March 9, 2019 15:44
Show Gist options
  • Save Violet-Bora-Lee/0f23469f97ba9ef0e516f74cda966a73 to your computer and use it in GitHub Desktop.
Save Violet-Bora-Lee/0f23469f97ba9ef0e516f74cda966a73 to your computer and use it in GitHub Desktop.
// in util.js
export default function times(x) {
return x * x;
}
// in app.js
import k from './util.js';
console.log(k(4)); // returns 16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment