Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save nivrith/1dc99713fe2429fe1302bbea214db2fc to your computer and use it in GitHub Desktop.

Select an option

Save nivrith/1dc99713fe2429fe1302bbea214db2fc to your computer and use it in GitHub Desktop.
functions with multiple parameters are unreadable
function getImageURLById(imageId, asAttachment = false, asThumbnail = false, withCompression = false) {
...
}
// This is unreadable without checking function definition
getImageURLById(25, true, false, true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment