nikolayneykov

Untitled

Feb 23rd, 2019
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function solve() {
  2.     let arr = ['Pesho', 'Stamat', 'Blago'];
  3.     console.table(arr);
  4.  
  5.     let matrix = [
  6.         [1, 2, 3],
  7.         [4, 5, 6],
  8.         [7, 8, 9]
  9.     ]
  10.  
  11.     console.table(matrix);
  12. }
  13.  
  14. solve();
Advertisement
Add Comment
Please, Sign In to add comment