Advertisement
Guest User

Untitled

a guest
Dec 27th, 2016
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. function find(obj) {
  2. //what argument do I have?
  3. console.log(obj);
  4. }
  5.  
  6. var req = {
  7. body: {
  8. username: "peat",
  9. password: "123456"
  10. }
  11. }
  12.  
  13. //What you're doing
  14. find(req.body.username);
  15. //What must be done
  16. find({username: req.body.username});
  17. find(req.body);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement