Skip to content

Latest commit

 

History

History
8 lines (6 loc) · 242 Bytes

File metadata and controls

8 lines (6 loc) · 242 Bytes

Screen Shot 2022-06-29 at 22 27 34

const isSquare = (n) => {
  return Math.sqrt(n) % 1 === 0;
};