Skip to content

Instantly share code, notes, and snippets.

@ryan-allen
Created January 8, 2012 23:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ryan-allen/1580067 to your computer and use it in GitHub Desktop.
Save ryan-allen/1580067 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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment