Skip to content

Instantly share code, notes, and snippets.

@yurijserrano
Created March 2, 2024 18:02
Show Gist options
  • Save yurijserrano/675772869b61dd86135df201587acdbb to your computer and use it in GitHub Desktop.
Save yurijserrano/675772869b61dd86135df201587acdbb to your computer and use it in GitHub Desktop.
Solutions
// Solution 1
app.get('/data', function(req, res) {
res.send('welcome!');
});
// Solution 2
app.get('/data', (req, res) => {
res.send('welcome!');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment