We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1b02c9b + 749a02b commit dcb2fc1Copy full SHA for dcb2fc1
README.md
@@ -1178,11 +1178,11 @@ var person = {
1178
firstName: 'James',
1179
lastName: 'Bond',
1180
get fullName() {
1181
- console.log('Setting FullName');
+ console.log('Getting FullName');
1182
return this.firstName + ' ' + this.lastName;
1183
},
1184
set fullName (name) {
1185
- console.log('Getting FullName');
+ console.log('Setting FullName');
1186
var words = name.toString().split(' ');
1187
this.firstName = words[0] || '';
1188
this.lastName = words[1] || '';
0 commit comments