const row = '<tr><td>1</td><td>2</td></tr>';
const table = '<table><tbody>' + Array(10000).fill(row).join('') + '</tbody></table>';
const template = document.createElement('template');
template.innerHTML = table;
const div = document.createElement('div');
template.content.firstChild.cloneNode(true);
const row = '<tr><td>1</td><td>2</td></tr>';
const table = '<table><tbody>' + Array(10000).fill(row).join('') + '</tbody></table>';
const template = document.createElement('template');
template.innerHTML = table;
const div = document.createElement('div');
div.innerHTML = table;
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
CloneNode | |
InnerHTML |
Test name | Executions per second |
---|---|
CloneNode | 50.2 Ops/sec |
InnerHTML | 30.5 Ops/sec |
Let's dive into the provided benchmark.
What is tested?
The provided benchmark tests two approaches to achieve the same result: Cloning a table row using cloneNode
or setting its innerHTML. The test creates a template element, sets its innerHTML with a large amount of HTML content, and then clones the first child of the template element.
Options compared
Two options are being compared:
cloneNode
method to create a deep copy of the table row. The original element is not modified, and a new one is created in its place.div
) with the same HTML content as before.Pros and Cons
Pros:
Cons:
Pros:
Cons:
Library and Purpose
The template
element is used in both test cases. A template
element is a HTML element that can be used as a container for dynamic content. When its innerHTML
property is set, it renders the contents of the template as HTML elements. In this case, the template's innerHTML is set to contain a large amount of HTML content, which is then cloned or used as-is.
Special JS features or syntax
None are mentioned in the provided benchmark definitions. However, using innerHTML
can lead to security vulnerabilities if the input content is not properly sanitized, as it allows execution of JavaScript code.
Other alternatives
Alternatives to these approaches could include:
.clone()
method, which creates a deep copy of an element.In summary, the benchmark compares two approaches for achieving a specific result: Cloning a table row using cloneNode
or setting its innerHTML. Each approach has pros and cons regarding performance, memory usage, and modification of original elements.