Skip to content

Instantly share code, notes, and snippets.

@fduch2k
Last active August 25, 2022 12:41
Show Gist options
  • Save fduch2k/c991e1f9201613d88a23224a26ca954f to your computer and use it in GitHub Desktop.
Save fduch2k/c991e1f9201613d88a23224a26ca954f to your computer and use it in GitHub Desktop.
Test for understand how to works getters and this in js objects
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