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