blob: 84d5a2f2ff174de606360014b36215f0f8c285f9 (
plain) (
tree)
|
|
// bllopcks
const heading = document.createElement("h3");
const headingText = document.createTextNode("Snatch grab");
heading.appendChild(headingText);
const mydiv = document.body.querySelector("#test-container")
mydiv.appendChild(heading);
var i;
for (i = 0; i < 15; i++) {
}
|