append in html id code example
Example 1: .append js
let parent = document.createElement("div")
parent.append("Some text")
console.log(parent.textContent) // "Some text"
Example 2: jquery append html
$("p").append(" <b>You can write your Text Here </b>.");