Skip to content

Instantly share code, notes, and snippets.

@Octagon-simon
Created September 20, 2022 03:51
Show Gist options
  • Select an option

  • Save Octagon-simon/57f2570145fd00824b7ba7865da581fc to your computer and use it in GitHub Desktop.

Select an option

Save Octagon-simon/57f2570145fd00824b7ba7865da581fc to your computer and use it in GitHub Desktop.
//route to fruits
app.get( '/fruits', (req, res) => {
//our fruits array
const fruitsAry = ['apple', 'mango', 'guava', 'banana', 'pineapple']
//render the template for the fruits page & send data as json
res.render('fruits', {fruitsAry});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment