Created
January 14, 2020 16:59
-
-
Save tiptopcoder/b1e70db6d1c2d4fad7ea1782731c749d to your computer and use it in GitHub Desktop.
This file contains 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
export const formatName = (firstName: string, lastName: string) => { | |
return `${firstName} ${lastName}`; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment