Skip to content

Instantly share code, notes, and snippets.

@sofiawithan-f
Created October 24, 2015 16:10
Show Gist options
  • Save sofiawithan-f/56d4008959d2cba084b4 to your computer and use it in GitHub Desktop.
Save sofiawithan-f/56d4008959d2cba084b4 to your computer and use it in GitHub Desktop.
var square = new Object();
square.sideLength = 6;
square.calcPerimeter = function() {
return this.sideLength * 4;
};
// help us define an area method here
square.calcArea = function(){
return this.sideLength * this.sideLength
}
var p = square.calcPerimeter();
var a = square.calcArea();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment