Jak odfiltrować tablicę, aby uzyskać tylko liczby

function filterArray(arr) {
	return arr.filter(el => Number.isInteger(el));
}
Anthony Smith