Guest User

Untitled

a guest
Apr 19th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. var foo = function () {
  2. this.init = function () {
  3. // Stuff that happens on creation
  4. };
  5. this.reinit = function () {
  6. this.init()
  7. };
  8. this.init();
  9. };
  10. // Create
  11. var newThing = new foo();
  12. // Later on ...
  13. newThing.reinit();
Add Comment
Please, Sign In to add comment