Wednesday, September 28, 2016

code

what you give the computer is
a string
and the computer can tell
from that what you want it to do

something like
showpinksquare(); function showpinksquare() {var div = document.createElement("div"); var style = document.createAttribute("style"); style.value = "position:absolute;left:100px;top:100px;width:100px;height:100px;background-color:pink"; div.setAttributeNode(style); window.document.body.appendChild(div)}

also
giving the computer a string (to run) is something you have to know how to do

also
when you want to do more it becomes very cumbersome
and
what is required
then
is structure
which doesn't mean what you think
but
i only have an idea what it means
and
how to do it