Guest User

Untitled

a guest
Jul 16th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. {
  2. "_id":"ZgfgbGpMxF5T6pNT8",
  3. "firstName":"Angela",
  4. "classes":[
  5. {
  6. "classId":"3x8cNzzr4DQ4PioM7"
  7. },
  8. {
  9. "classId":"oehC4pWbFLDAjbzvt"
  10. }
  11. ]
  12. }
  13.  
  14. let studentUserProfiles = this.props.studentUserProfiles.map((studentUserProfile) => {
  15. studentUserProfile.classes = studentUserProfile.classes.filter(myClass => filterIds.includes(myClass.classId));
  16. return studentUserProfile;
  17. });
Add Comment
Please, Sign In to add comment