let newParagraph = $("<p></p>").text("This is a new paragraph."); // creates a new paragraph $("body").append(newParagraph); // appends newParagraph to the end of the body element
let newParagraph = $("<p></p>").text("This is a new paragraph."); // creates a new paragraph $("body").append(newParagraph); // appends newParagraph to the end of the body element