Skip to content

Instantly share code, notes, and snippets.

@rndme
Created February 23, 2016 08:20
Show Gist options
  • Save rndme/5c8d09194b844cf929d0 to your computer and use it in GitHub Desktop.
Save rndme/5c8d09194b844cf929d0 to your computer and use it in GitHub Desktop.
var counter=1;
addEventListener("plus", function(e){
console.log(counter++);
});
dispatchEvent(new Event("plus"));
dispatchEvent(new Event("plus"));
dispatchEvent(new Event("plus"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment