Created
October 23, 2018 02:13
-
-
Save jsdecena/8de972f60fa452894c706d6b4670bb05 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.criteria.forEach(crit => { | |
this.form.responses.forEach(resp => { | |
if (resp.form_criteria_id === crit.form_criteria_id) { | |
return crit.value = resp.value; | |
} | |
}); | |
}); | |
console.log(this.criteria, '<<<'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment