freeCodeCamp Challenge Guide: Use Spread and Notes for ES5 Set() Integration

Use Spread and Notes for ES5 Set() Integration

Solution
function checkSet(set) {
   // Only change code below this line
   return [...set]
   // Only change code above this line
}
3 Likes