Guest User

Untitled

a guest
Nov 16th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. array 1
  2. [{"id": 1,
  3. "name": "paul"
  4. },
  5. {"id": 2,
  6. "name": "sarah"
  7. }
  8. ]
  9.  
  10. array 2
  11. [{"id": 1,
  12. "email": "p@test.co.uk"
  13. },
  14. {"id": 2,
  15. "email": "s@test.co.uk"
  16. }
  17. ]
  18.  
  19. output
  20. [{"id": 1,
  21. "name": "paul",
  22. "email": "p@test.co.uk"
  23. },
  24. {"id": 2,
  25. "name": "sarah",
  26. "email": "s@test.co.uk"
  27. }
  28. ]
Add Comment
Please, Sign In to add comment