Skip to content

Instantly share code, notes, and snippets.

@mitchallen
Created December 16, 2021 03:40
Show Gist options
  • Save mitchallen/402253719c3cde9e71c38a2627dc5cff to your computer and use it in GitHub Desktop.
Save mitchallen/402253719c3cde9e71c38a2627dc5cff to your computer and use it in GitHub Desktop.
How to Create a JavaScript Module (NodeJS, Browser) (scriptable.com)
// Add this to the bottom of index.js
let robbie = makeObject();
robbie.hello();
let b9 = makeObject({ name: 'B9' });
b9.hello();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment