DEV Community

[Comment from a deleted post]
Collapse
 
bhagatparwinder profile image
Parwinder 👨🏻‍💻

Another quick way is using the length property to your advantage.

const arr = [1, 2, 3, 4, 5, 6];
arr.length = 3;
console.log(arr); // [1, 2, 3];
Enter fullscreen mode Exit fullscreen mode

Poof! The last three elements are gone.

Collapse
 
calvintwr profile image
calvintwr

This indeed is the fastest! 😂

Collapse
 
ip127001 profile image
Rohit Kumawat

Thanks for reading and a great suggestion!