Skip to content

Instantly share code, notes, and snippets.

@K-Vishwak
Last active March 5, 2022 14:37
Show Gist options
  • Save K-Vishwak/b74fe4c84336292f91990936db88b2c1 to your computer and use it in GitHub Desktop.
Save K-Vishwak/b74fe4c84336292f91990936db88b2c1 to your computer and use it in GitHub Desktop.
'use strict';
const obj = {
word: "first",
get test() {
return this.word.toUpperCase();
}
};
obj.test = 'test';
console.log(obj.test);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment