Skip to content

Instantly share code, notes, and snippets.

@arnemart
Created November 11, 2015 08:51
Show Gist options
  • Save arnemart/ea7ccf266b0b57009d5c to your computer and use it in GitHub Desktop.
Save arnemart/ea7ccf266b0b57009d5c to your computer and use it in GitHub Desktop.
lastNDigitsOfPi.js
function lastNDigitsOfPi(n) {
return Math.PI.toFixed(Infinity).slice(-n);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment