Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 231 Bytes

clear_array.md

File metadata and controls

12 lines (8 loc) · 231 Bytes

Clear (empty) array

var arr = [1, 2, 3];
arr.length = 0;
  • var arr - declare test array
  • arr.length = 0 - will clear array by setting length property to zero

link_youtube: https://youtu.be/Iq0u6fe9spo