I have a question. I'm trying to sum up ints in node, but this happens in the repl:
144115291155089440
> 32 + 2048 + 16384 + 34359738368 + 68719476736 + 144115188075855870 + 4
144115291155089440
> 32 + 2048 + 16384 + 34359738368 + 68719476736 + 144115188075855870
144115291155089440
Can someone explain why this is happening? Context is I'm referring to this API (https://moz.com/help/guides/moz-api/mozscape/api-reference/url-metrics) and trying to use return a Cols
value for their BitFlag.
Thanks again!