Skip to content

Instantly share code, notes, and snippets.

@Underdoge
Last active April 7, 2021 23:13
Show Gist options
  • Save Underdoge/795fac4cb46c5bc7e1aa1cfdc90d1358 to your computer and use it in GitHub Desktop.
Save Underdoge/795fac4cb46c5bc7e1aa1cfdc90d1358 to your computer and use it in GitHub Desktop.
shapeArea
function shapeArea(n) {
return 2*Math.pow(n,2) - 2*n +1;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment