Last active
December 16, 2021 03:25
-
-
Save mitchallen/d38156a922f1cbfda8f48edbd8995971 to your computer and use it in GitHub Desktop.
How to Create a JavaScript Module (NodeJS, Browser) (scriptable.com)
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
// File: index.js | |
// Author: Mitch Allen | |
import obj from './my-mod.js'; | |
obj.name = "Droid"; | |
console.log( "My name is", obj.name ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment