Guest User

Untitled

a guest
Nov 23rd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. <button>test</button>
  2.  
  3. var h = [2, 4, 6, 3, 4, 2, 7];
  4. var button = document.getElementsByTagName('button');
  5. var placementOfValueReaches5 = [];
  6.  
  7. h.forEach(function(value, index){
  8. if (value >= 5){
  9. button[index].setAttribute('disabled', true);
  10. placementOfValueReaches5.push(index);
  11. }
  12. });
  13.  
  14. console.log(placementOfValueReaches5); // outputs [2, 6]
Add Comment
Please, Sign In to add comment