Last active
August 25, 2022 12:41
-
-
Save fduch2k/c991e1f9201613d88a23224a26ca954f to your computer and use it in GitHub Desktop.
Test for understand how to works getters and this in js objects
This file contains 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
class Test { | |
_name = 'test1' | |
get name() { | |
return this._name | |
} | |
getName() { | |
return this._name | |
} | |
get coreDependencies() { | |
return { | |
name: this.name, | |
getName: this.getName, | |
} | |
} | |
} | |
const t = new Test() | |
console.log(t.coreDependencies.getName()) | |
console.log(t.coreDependencies.name) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment