Question: How do you print a table in Javascript?
How do you print a table in HTML? var tab = document. getElementById(‘tab’); var style = “<style>”; style = style + “table {width: 100%; font: 17px Calibri;}”; style = style + “table, th, td {border: solid 1px #DDD; border-collapse: collapse;”; style = style + “padding: 2px 3px; text-align: center;}”; style = style + “</style>”; var …