Skip to content

Instantly share code, notes, and snippets.

@kljensen
Created September 19, 2015 07:06
Show Gist options
  • Select an option

  • Save kljensen/25d49e1dba3247a18583 to your computer and use it in GitHub Desktop.

Select an option

Save kljensen/25d49e1dba3247a18583 to your computer and use it in GitHub Desktop.
// Compute the area of many circles
var r, area;
r = 5;
area = Math.PI * r * r;
console.log('The area of a circle with radius r =', r, 'is', area);
r = 15;
area = Math.PI * r * r;
console.log('The area of a circle with radius r =', r, 'is', area);
r = 25;
area = Math.PI * r * r;
console.log('The area of a circle with radius r =', r, 'is', area);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment