Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2021
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. let array_values = [1, 2, 3, 4, 5, 6, 7,8];
  2. console.log(array_values.length);
  3. // 8  
  4. array_values.length = 0;  
  5. console.log(array_values.length);
  6. // 0
  7. console.log(array_values);
  8. // []
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement