alguien me puede ayudar a combinar 2 filas en javascript en html creo que es con Colspan
<html>
<head>
<meta charset="utf-8"/>
<title>Documento sin título</title>
</head>
<body>
<script>
tabla=document.createElement("table");
tabla.border=1;
tabla.align="center";
fila=document.createElement("tr");
fila2=document.createElement("tr");
fila3=document.createElement("tr");
fila4=document.createElement("tr");
celda1=document.createElement("td");
texto1=document.createTextNode("Numero");
celda2=document.createElement("td");
texto2=document.createTextNode("Nombre");
celda3=document.createElement("td");
texto3=document.createTextNode("Apellidos");
celda5=document.createElement("td");
texto5=document.createTextNode("01");
celda6=document.createElement("td");
texto6=document.createTextNode("Juan");
celda7=document.createElement("td");
texto7=document.createTextNode("Quispe");
celda9=document.createElement("td");
texto9=document.createTextNode("02");
celda10=document.createElement("td");
texto10=document.createTextNode("carlos");//////////
celda11=document.createElement("td");
texto11=document.createTextNode("peralta");//////////////////
celda1.appendChild(texto1);
fila.appendChild(celda1);
celda2.appendChild(texto2);
fila.appendChild(celda2);
celda3.appendChild(texto3);
fila.appendChild(celda3);
celda5.appendChild(texto5);
fila2.appendChild(celda5);
celda6.appendChild(texto6);
fila2.appendChild(celda6);
celda7.appendChild(texto7);
fila2.appendChild(celda7);
celda9.appendChild(texto9);
fila3.appendChild(celda9);
celda10.appendChild(texto10);
fila3.appendChild(celda10);
celda11.appendChild(texto11);
fila3.appendChild(celda11);
tabla.appendChild(fila);
tabla.appendChild(fila2);
tabla.appendChild(fila3);
document.body.appendChild(tabla);
</script></body>
</html>