Skip to content

Instantly share code, notes, and snippets.

@mrfoh
Created March 14, 2021 10:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrfoh/75aa18e5f4957b2c35d8f0862e5c23ab to your computer and use it in GitHub Desktop.
Save mrfoh/75aa18e5f4957b2c35d8f0862e5c23ab to your computer and use it in GitHub Desktop.
Fix for code snippet in Silverfin Questionaire
const personalize_msg = (Name, _ending) => {
const ending = _ending || '.'
const message = "you are great"
return `${Name}, ${message}${ending}`
}
personalize_msg("Anonymous", '!')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment