JS Practice

While Loop

by mchashok

HTML

<div id="demo">
  
</div>

JavaScript

var i = 0;

while(i > 20 ){
	document.write("demo");
}