I am using JS Bin and realize that the for loop are not working for me on JS Bin. I get an "Unexpected token ;" error
Event the simplest for loop that prints numbers from 1 to 10 does not work.
Like so:
for(var i=0;i<10;i++){
console.log("hi");
}// "Unexpected token ;"