Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Js
let x = 3n ** 247n;

Big integers (arbitrary precision integers) are currently only supported by Chrome, NodeJS, and Firefox.
using System.Numerics;
var x = BigInteger.Pow(3, 247);

New implementation...