MCPcopy Create free account
hub / github.com/ShivaBhattacharjee/KeyZen / constructor

Method constructor

public/code/javascript/05_classes.js:2–4  ·  view source on GitHub ↗
(name)

Source from the content-addressed store, hash-verified

1class Animal {
2 constructor(name) {
3 this.name = name;
4 }
5
6 speak() {
7 console.log(`${this.name} makes a noise.`);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected