Skip to content

Instantly share code, notes, and snippets.

@codeperfectplus
Created September 11, 2023 08:20
Show Gist options
  • Select an option

  • Save codeperfectplus/4ccd801ef1ff51e511feb773111ca6f5 to your computer and use it in GitHub Desktop.

Select an option

Save codeperfectplus/4ccd801ef1ff51e511feb773111ca6f5 to your computer and use it in GitHub Desktop.
/*
* Complete the Rectangle function
*/
function Rectangle(a, b) {
this.length = a;
this.width = b;
this.perimeter = 2 * (this.length + this.width);
this.area = this.length * this.width;
}
const rec = new Rectangle(4,5);
console.log(rec.perimeter);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment