{
const testData = Array.from({ length: settings.maxTry }).map((_, i) => i);
const jCreationResult = getAverage(jCreationTest, testData);
const jUpdateResult = getAverage(jUpdateTest, testData);
const dCreationResult = getAverage(dCreationTest, testData);
const dUpdateResult = getAverage(dUpdateTest, testData);
return html`
<div>
<h2>test result</h2>
<table>
<thead>
<tr>
<th>test type</th>
<th>jQuery(ms)</th>
<th>d3(ms)</th>
</tr>
</thead>
<tbody>
<tr>
<td>object creation</td>
<td>${jCreationResult}</td>
<td>${dCreationResult}</td>
</tr>
<tr>
<td>object update</td>
<td>${jUpdateResult}</td>
<td>${dUpdateResult}</td>
</tr>
</tbody>
</table>
</div>
`;
}