[Vuejs]-Vue/Javascript – the best way to write this ternary

3👍

this.mygroup = id === this.mygroup ? '' : id;

You assign this.mygroup to either '' or id, which is what you want

Leave a comment