| OLD | NEW |
| 1 <script> | 1 <script> |
| 2 var count = 1; | 2 var count = 1; |
| 3 function run() { | 3 function run() { |
| 4 var div = document.createElement("div"); | 4 var div = document.createElement("div"); |
| 5 div.textContent = "Testing " + (count++); | 5 div.textContent = "Testing " + (count++); |
| 6 document.body.appendChild(div); | 6 document.body.appendChild(div); |
| 7 if (count > 10) | 7 if (count > 10) |
| 8 document.body.removeChild(document.body.firstChild); | 8 document.body.removeChild(document.body.firstChild); |
| 9 } | 9 } |
| 10 | 10 |
| 11 setInterval(run, 1000); | 11 setInterval(run, 1000); |
| 12 </script> | 12 </script> |
| OLD | NEW |