16
Yes, it is a conjunction, but it is a subordinating conjunction.
you will know when you get there
It means that you wait for anything
This is a loop function ... the loop will continue until something true happens. example: int i = 0; do { console.write(i + "< br />"); i++; }while(i < 100); This will...