summaryrefslogtreecommitdiffstats
path: root/engagements/static/js/yoap.js
blob: 84d5a2f2ff174de606360014b36215f0f8c285f9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
// 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++) {

}