Skip to content

Instantly share code, notes, and snippets.

@rschrieken
Last active August 29, 2015 13:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rschrieken/8696137 to your computer and use it in GitHub Desktop.
Save rschrieken/8696137 to your computer and use it in GitHub Desktop.
users pingable in chat
var i; for(i in users) { console.log(users[i].name);}
(function() { var i,all=''; for(i in users) { all = all + ' @'+users[i].name.replace(' ','');} console.log(all);})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment