Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. Array(3)
  2. 0: Appointment
  3. area: "S. Eter"
  4. data: "2019-05-23T12:40:55.155+01:00"
  5. description: "Sprint CS WEB"
  6. horaFinal: "2019-05-21T11:40:59.028Z"
  7. horaInicial: "2019-05-21T11:40:59.028Z"
  8. id: 17
  9. __proto__: Object
  10. 1: Appointment
  11. area: "S. Confiança"
  12. data: "2019-05-23T12:40:55.155+01:00"
  13. description: "AR"
  14. horaFinal: "2019-05-21T16:45:15.448+01:00"
  15. horaInicial: "2019-05-21T16:00:15.448+01:00"
  16. id: 18
  17. __proto__: Object
  18. 2: Appointment
  19. area: "djdndjsnsnsnzznj"
  20. data: "2019-05-23T11:18:24.596+01:00"
  21. description: "xbxnxnsnsjsjdjdkssjdjsjsk"
  22. horaFinal: "2019-05-22T10:42:46.770Z"
  23. horaInicial: "2019-05-22T11:41:46.769+01:00"
  24. id: 23
  25. __proto__: Object
  26.  
  27. this.appointments.sort(function(a, b) {
  28. var textA = a.horaInicial.toUpperCase();
  29. var textB = b.horaInicial.toUpperCase();
  30. return (textA < textB) ? -1 : (textA > textB) ? 1 : 0;
  31. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement