EN
JavaScript - create object with setter
0 points
In this article, we would like to show you how to create object with setter in JavaScript.
Quick solution:
xxxxxxxxxx
1
const user = {
2
id: '1',
3
username: 'Tom',
4
country: null,
5
6
// setter
7
set current(countryName) {
8
this.country.push(countryName);
9
}
10
};
11
12
// set value
13
user.country = 'USA';
14
15
console.log(user.country); // USA
In this example, we use the set
keyword to create an object with a setter that sets the country
property for the user
object.
xxxxxxxxxx
1
const user = {
2
id: '1',
3
username: 'Tom',
4
country: null,
5
6
// setter
7
set current(countryName) {
8
this.country.push(countryName);
9
}
10
};
11
12
// set value
13
user.country = 'USA';
14
15
console.log(user.country); // USA
Output:
xxxxxxxxxx
1
USA
-
todo