This concerns the new JavaScript BigInt type, as supported in Chrome and Node v10.4
Both the following lines throw an error:
Math.sqrt(9n)
Math.sqrt(BigInt(9))
Error is:
Cannot convert a BigInt value to a number
How do I get the square root of a BigInt in JavaScript? TIA