Created
March 9, 2019 15:44
-
-
Save Violet-Bora-Lee/0f23469f97ba9ef0e516f74cda966a73 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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