Skip to content

Instantly share code, notes, and snippets.

@seemaquadir
seemaquadir / get-trello-names.js
Created July 7, 2021 15:15 — forked from tommcfarlin/get-trello-names.js
[JavaScript] Returns an array of all of the names of a Trello boards members.
/**
* Retrieves a list of all of the members on a Trello board and stores and
* returns their names in an array. It will not include any duplicates.
*
* Trello names are usually represented as "Elliot Alderson (mrrobot)" but the
* returned array will only return an array with their actual name (that is,
* Ellio Alderson).
*
* This does not require jQuery or any third-party library to run. If you want
* to run this from the console of Chrome, then paste this entire function into