Guest User

Untitled

a guest
Oct 16th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. class Animal {
  2. constructor(name) {
  3. this.name = name;
  4. }
  5. }
  6.  
  7. // Export the class instance
  8. export const animal = new Animal('fred');
  9.  
  10. import {animal} from 'Animal.js';
  11. // animal.name == 'fred';
Add Comment
Please, Sign In to add comment