Guest User

Untitled

a guest
Jan 7th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. matrix =
  2. [[7, 2, 7, 2, 8],
  3. [2, 9, 4, 1, 7],
  4. [3, 8, 6, 2, 4],
  5. [2, 5, 2, 9, 1],
  6. [6, 6, 5, 4, 5]];
  7.  
  8. matrix.forEach(function(item, ind){
  9. matrix[0].forEach(function(item0, ind0){
  10. console.log(item0);
  11. })
  12. return false;
  13. })
Add Comment
Please, Sign In to add comment