(Again ?!)
(in the previous class)
document.getElementById("content").innerHTML = "My Content"document.getElementById("body").className = "red";document.getElementById("body").style.background = "#ff7600";document.getElementById("my-div").appendChild(your_new_node);document.getElementById("my-div").insertBefore(your_new_node, your_anchor_node);document.getElementById("my-div").removeChild(your_node);document.getElementById("my-div").replaceChild(your_new_node, your_old_node);var your_new_node = document.createElement("p");
var node_content = document.createTextNode("My New Paragraph");
your_new_node.appendChild(node_content);Javascript Saiyan 1
Create Currency Converter :
Javascript Saiyan 2
Create trello wanna be :
Javascript Saiyan 3
WELL DONE !