Skip to content

Instantly share code, notes, and snippets.

@jsdecena
Created October 23, 2018 02:13
Show Gist options
  • Save jsdecena/8de972f60fa452894c706d6b4670bb05 to your computer and use it in GitHub Desktop.
Save jsdecena/8de972f60fa452894c706d6b4670bb05 to your computer and use it in GitHub Desktop.
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