Created
September 11, 2023 08:20
-
-
Save codeperfectplus/4ccd801ef1ff51e511feb773111ca6f5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * 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