Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //get profile by id
  2. app.get('/profiles/:id', (req, res) => {
  3.    
  4.     const profile = profiles.find(p => p.id === parseInt(req.params.id));
  5.    
  6.     //error hendl
  7.     if(!profile) res.send('Nije pronadjen');
  8.  
  9.     else res.send(profile);
  10. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement