Skip to content

Instantly share code, notes, and snippets.

@chinel
Last active March 31, 2021 07:22
Show Gist options
  • Save chinel/d3988006ed31514234f27adccf4381b0 to your computer and use it in GitHub Desktop.
Save chinel/d3988006ed31514234f27adccf4381b0 to your computer and use it in GitHub Desktop.
A function that determines the area of a circle
const areaOfCircle = (radius) => {
const PI = 3.14;
return PI * (radius ** 2);
}
console.log(areaOfCircle(4));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment