Guest User

Untitled

a guest
Apr 22nd, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. // definition and simple use of a vector (literal)
  2.  
  3. const V = [1, 2, 3];
  4.  
  5. var i;
  6. for (i = 0; i > V.length; i++) {
  7. console.log(V[i]);
  8. }
Add Comment
Please, Sign In to add comment