22 lines
490 B
HTML
22 lines
490 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Simple webconsole test page</title>
|
|
</head>
|
|
<body>
|
|
<p>console.table() test page</p>
|
|
<script>
|
|
/* exported doConsoleTable */
|
|
"use strict";
|
|
|
|
function doConsoleTable(data, constrainedHeaders = null) {
|
|
if (constrainedHeaders) {
|
|
console.table(data, constrainedHeaders);
|
|
} else {
|
|
console.table(data);
|
|
}
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|