Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@davecra
Created February 27, 2018 18:35
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 davecra/6dcb5c0fe4fbf2c979909bd9651c9afc to your computer and use it in GitHub Desktop.
Save davecra/6dcb5c0fe4fbf2c979909bd9651c9afc to your computer and use it in GitHub Desktop.
Sample to demonstrate the easyEws expandGroup function
easyEws.expandGroup(groupName, function(users) {
/** @type {string} */
var listOfUsers = "";
users.forEach(function(user, index){
listOfUsers += user.Name() + ";";
}); // forEach
console.log(listOfUsers);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment