Guest User

Untitled

a guest
Mar 19th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. [
  2. {
  3. "date":"2018-04-01",
  4. "time":[{"10:00":"12"},{"12:00":"25"}]
  5. },
  6. {
  7. "date":"2018-04-02",
  8. "time":[{"10:00":"12"},{"12:00":"25"}]
  9. },
  10. {
  11. "date":"2018-04-03",
  12. "time":[{"10:00":"12"},{"12:00":"25"}]
  13. }
  14. ]
  15.  
  16. var slots = req.body.availableSlots;
  17. var count = slots.length;
  18. for(var i=0;i<count;i++){
  19. console.log(slots[i]);
  20. console.log(slots[i].date);
  21. }
Add Comment
Please, Sign In to add comment