Skip to content

Latest commit

 

History

History
7 lines (6 loc) · 297 Bytes

File metadata and controls

7 lines (6 loc) · 297 Bytes

Screen Shot 2022-08-12 at 01 06 34

function openOrSenior(data){
  return data.map(([age, handicap]) => (age >= 55 & handicap > 7) ? "Senior" : "Open");
}