How to create table in html using for loop

I am trying to create a simple times table in a html document using Javascript. This is my code so far:


    
    
        Table
    
    
    
        for [var a=0; a < 10; a++] {
            document.write[""];
            for[var b=0; b

Chủ Đề