Source code
Revision control
Copy as Markdown
Other Tools
class Test {
constructor() {
this.foo = {
a: "foobar"
};
}
bar() {
console.log(this.foo.a);
}
}
class Test {
constructor() {
this.foo = {
a: "foobar"
};
}
bar() {
console.log(this.foo.a);
}
}