Last active
May 3, 2017 01:58
-
-
Save calebeby/ca290a8ce8dda17c01c6c87452f853bf to your computer and use it in GitHub Desktop.
Pi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const iterations = 1000000000 | |
var pi = 0 | |
const getPi = () => { | |
for (let i = 1; i <= iterations; i += 4) { | |
pi += 4 / i | |
pi -= 4 / (i + 2) | |
} | |
} | |
getPi() | |
console.log(pi) | |
// 3.141592651589258 after 45s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment