Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 163 Bytes

File metadata and controls

10 lines (9 loc) · 163 Bytes
const sum = (a, b) => {
  const bigA = BigInt(a);
  const bigB = BigInt(b);
  return bigA + bigB;
};

```javascript
const sum = (a, b) => a + b;