Como limitar o número de itens de uma matriz em JavaScript
arr.slice(0,3)
// with 3 being the length of the array you desire
Collins Rollins
arr.slice(0,3)
// with 3 being the length of the array you desire