Skip to content

Instantly share code, notes, and snippets.

@NullDev
Last active April 20, 2022 12:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NullDev/6766a1c4aea54988f28db8ecc9ceb6b3 to your computer and use it in GitHub Desktop.
Save NullDev/6766a1c4aea54988f28db8ecc9ceb6b3 to your computer and use it in GitHub Desktop.
Smol pi approximation in JS
for(i=p=2;i<1e6;i+=2)p*=i*i/(i*i-1);console.log(p)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment