Last active
January 11, 2020 18:17
-
-
Save yarigpopov/c3fecf53060d463d375ba3f6812359a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'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