Guest User

Untitled

a guest
Jan 19th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. function createListener(id) {
  2. var listener(id here) = fs.watchFile(file, function () {
  3. });
  4. });
  5.  
  6. var functions = [];
  7. functions.push = function () { ... };
  8.  
  9. // functions = [ function () { ... } ];
  10.  
  11. var functions = {};
  12. functions["one"] = function () { ... };
  13.  
  14. // functions = { one: function () { ... } };
Add Comment
Please, Sign In to add comment