Как отфильтровать массив, чтобы получить только числа

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