For loops in javascript are typically written in ways that look something like this:
for (initialization; condition; do-after-each-iteration) { loop-body…
How do you tell the type of something in javascript? You can’t just use typeof. That doesn’t work for things like arrays.