Javascript30 Day4: Array Cardio Day1
dataArray.prototype.filter()
1. Filter the list of inventors for those who were born in the 1500's.
const fifteen = inventors.filter(
(inventor) => inventor.year >= 1500 && inventor.year < 1600
);
console.table(fifteen);