Bagaimana membatasi jumlah item dari array di JavaScript

arr.slice(0,3)
// with 3 being the length of the array you desire
Collins Rollins