Skip to content

Instantly share code, notes, and snippets.

@djD-REK
Created September 20, 2019 05:05
Show Gist options
  • Select an option

  • Save djD-REK/e85bd20a8e14e05492eeb3fc22a7a601 to your computer and use it in GitHub Desktop.

Select an option

Save djD-REK/e85bd20a8e14e05492eeb3fc22a7a601 to your computer and use it in GitHub Desktop.
const menuItem = (item, price) => item+price.padStart(40-item.length,".")
console.log(menuItem("Pizza","$19.99"))
console.log(menuItem("Soda","$2.99"))
console.log(menuItem("Greek Salad","$9.99"))
// Output:
// Pizza.............................$19.99
// Soda...............................$2.99
// Greek Salad........................$9.99
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment