Skip to content

Instantly share code, notes, and snippets.

@mitchallen
Last active December 16, 2021 03:25
Show Gist options
  • Save mitchallen/d38156a922f1cbfda8f48edbd8995971 to your computer and use it in GitHub Desktop.
Save mitchallen/d38156a922f1cbfda8f48edbd8995971 to your computer and use it in GitHub Desktop.
How to Create a JavaScript Module (NodeJS, Browser) (scriptable.com)
// 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