Create and store in variable $nextTag a new
tag containing: Improving daily /* Your solution goes here */ $("div").append($nextTag);
// What i learn from you question is you want me to declare a variable which hold a text within a tag. So the final solution is :
let $nextTag = "<p>Improving daily</p>";
$('div').append($nextTag);
// In complete JQuery code:
$(document).ready(function() {
let $nextTag = "<p>Improving daily</p>";
$('div').append($nextTag);
});
// Please let me know if you need anything more on this.
Create and store in variable $nextTag a new tag containing: Improving daily /* Your solution goes...