Skip to content

Instantly share code, notes, and snippets.

@Zlob
Created February 3, 2016 16:51
Show Gist options
  • Save Zlob/a80c013feb2c35535ba0 to your computer and use it in GitHub Desktop.
Save Zlob/a80c013feb2c35535ba0 to your computer and use it in GitHub Desktop.

Revisions

  1. Zlob created this gist Feb 3, 2016.
    11 changes: 11 additions & 0 deletions store_methods_2.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@

    function Rectangle( x, y, width, height, options ){

    function getCenter(){
    return {
    x: x + width/2,
    y: y + height/2
    };
    }

    };