3👍
✅
this.mygroup = id === this.mygroup ? '' : id;
You assign this.mygroup
to either ''
or id
, which is what you want
Source:stackexchange.com