Created
September 20, 2022 03:51
-
-
Save Octagon-simon/57f2570145fd00824b7ba7865da581fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //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