Skip to content

Instantly share code, notes, and snippets.

@jordanhudgens
Created March 15, 2018 23:47
Show Gist options
  • Save jordanhudgens/f3c70c323c5ec86b814ee5d04a953be7 to your computer and use it in GitHub Desktop.
Save jordanhudgens/f3c70c323c5ec86b814ee5d04a953be7 to your computer and use it in GitHub Desktop.
const headingGenerator = (title, typeOfHeading) => {
return `
<h${typeOfHeading}>${title}</h${typeOfHeading}>
`
}
headingGenerator('Greetings', 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment