Skip to content

Instantly share code, notes, and snippets.

@segdeha
Created December 25, 2018 02:01
Show Gist options
  • Save segdeha/6c3d55ac4749ae58a422a55393be0676 to your computer and use it in GitHub Desktop.
Save segdeha/6c3d55ac4749ae58a422a55393be0676 to your computer and use it in GitHub Desktop.
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