Skip to content

Instantly share code, notes, and snippets.

@AvocadoVenom
Created September 8, 2019 10:40
Show Gist options
  • Select an option

  • Save AvocadoVenom/a3dbe20aedda50cba050914a6c2f3396 to your computer and use it in GitHub Desktop.

Select an option

Save AvocadoVenom/a3dbe20aedda50cba050914a6c2f3396 to your computer and use it in GitHub Desktop.
const shape = {
radius: 10,
diameter() {
return this.radius * 2;
},
perimeter: () => 2 * Math.PI * this.radius
};
console.log(shape.diameter());
console.log(shape.perimeter());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment