This post will be updated with developments Last updated: 13 July 2021


HTML: for 4 icons - Further maths, maths, physics and computer science

// count to ten
for (var i = 1; i <= 10; i++) {
    console.log(i);
}

// count to twenty
var j = 0;
while (j < 20) {
    j++;
    console.log(j);
}

To be developed