Created
December 25, 2018 02:01
-
-
Save segdeha/6c3d55ac4749ae58a422a55393be0676 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
const capitalise = name => name.slice(0, 1).toUpperCase() + | |
name.slice(1, name.length).toLowerCase(); | |
let name = 'diane'; | |
alert(`Hi ${capitalise(name)}. You are pretty cool!`); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment