Array_Cardio 1. filter const fifteen = inventors.filter( (inventor) => inventor.year >= 1500 && inventor.year `${inventor.first} ${inventor.last}` ); console.log(fullNames); 요소들을 원하는 대로 가공해서 재생산. 3.sort const ordered = inventors.sort((a, b) => (a.year > b.year ? 1 : -1)); console.table(ord..