MCPcopy Create free account
hub / github.com/chetannada/Javascript-Practice / constructor

Method constructor

2021_year/November_2021/script2911.js:5–8  ·  view source on GitHub ↗
(w, h)

Source from the content-addressed store, hash-verified

3// Day 5: Inheritance
4class Rectangle {
5 constructor(w, h) {
6 this.w = w;
7 this.h = h;
8 }
9}
10
11// adds an 'area' method to the Rectangle class' prototype

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected