Question: Given the following HTML, how could we use one line to hide or show the button?
- `$('.btn-primary').toggle();`
- `$('.btn-primary').showHide();`
- `$('.btn-primary').not(':visible').show();`
- `$('.btn-primary').css({ display: 'block'});`
Answer: The correct answer of the above question is Option A:`$('.btn-primary').toggle();`