var example = "Test" ;
$('button').click(function() {
$('div').append(example);
});
<button>Whatever</button>
<div></div>
How can I add text after the variable example in the jQuery code?
In other words, in the jQuery code how can I add text (in this example: "blah") after the variable so the HTML code will appear like this
<div>Testblah</div>