Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  
 <div class="initial">eze</div>
 <div class="initial">ze</div><div class="initial">eze</div>
 <div class="initial">ze</div>
</body>
</html>
 
var divs = document.getElementsByTagName("div"),
i = 0,
div;
while (divs.length){
  console.log("itération = " + i++);
  console.log(divs.length);
  divs[0].outerHTML = "<p>This is a paragraph.</p>";
  
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
dupontpro
0viewers