Skip to content

Instantly share code, notes, and snippets.

@Japh
Forked from ryan-allen/circle.js
Created January 9, 2012 06:18
Show Gist options
  • Save Japh/1581451 to your computer and use it in GitHub Desktop.
Save Japh/1581451 to your computer and use it in GitHub Desktop.
var Circle = function(radius) {
var calculateDiameter = function() {
return radius * 2
}
// here's a new 'circle'
return {
radius: radius,
calculateDiameter: calculateDiameter
}
}
var myCircle = Circle(20)
var myOtherCircle = Circle(30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment