Guest User

Untitled

a guest
Oct 1st, 2017
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. iteration_proposals.forEach((local) => {
  2.   proposals.forEach((global) => {
  3.     if(local.sign == global.sign) {
  4.       global.terms.push(local.terms[0]);
  5.       count_inserted_elements++;
  6.     } else {
  7.       others_props.push(local);
  8.       count_new_elements++;
  9.     }
  10.   });
  11. });
Advertisement
Add Comment
Please, Sign In to add comment