Skip to content

Instantly share code, notes, and snippets.

@K-Vishwak
Last active March 5, 2022 14:36
Show Gist options
  • Save K-Vishwak/db8a66659662d3177225b4bb609bff1f to your computer and use it in GitHub Desktop.
Save K-Vishwak/db8a66659662d3177225b4bb609bff1f to your computer and use it in GitHub Desktop.
'use strict';
const obj = {
word: "first",
get test() {
return this.word.toUpperCase();
},
set test(x) {
this.word = x;
}
};
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