Skip to content

Instantly share code, notes, and snippets.

@yarigpopov
Last active January 11, 2020 18:17
Show Gist options
  • Save yarigpopov/c3fecf53060d463d375ba3f6812359a0 to your computer and use it in GitHub Desktop.
Save yarigpopov/c3fecf53060d463d375ba3f6812359a0 to your computer and use it in GitHub Desktop.
'CHRIS NG, ALON BUKAI, JESSICA JORDAN, ANNE-GREETH VAN HERWIJNEN, ISAAC LEE, JARED GALANIS, AMY LAM'
.split(',')
.map(i=>i.toLowerCase()
.split(' ')
.map(name=>name.charAt(0).toUpperCase() + name.slice(1))
.join(' '))
.join(',')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment