Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 271 Bytes

File metadata and controls

11 lines (8 loc) · 271 Bytes

Screen Shot 2022-04-13 at 16 07 57

class SmallestIntegerFinder {
  findSmallestInt(args) {
    return Math.min(...args)
  }
}