Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 243 Bytes

File metadata and controls

9 lines (6 loc) · 243 Bytes

Screen Shot 2022-04-13 at 14 54 07

function makeNegative(num) {
  return num < 0 ? num : -num;
}