<div id="foo"></div>
var element = document.getElementById("foo");
element.className = "bar ";
var element = document.getElementById("foo");
element.classList.add("bar");
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
className | |
classList |
Test name | Executions per second |
---|---|
className | 21707038.0 Ops/sec |
classList | 6493166.0 Ops/sec |
The benchmark in question compares two different methods for manipulating CSS classes on a DOM element in JavaScript: using className
and classList
. Specifically, the comparison is centered around how efficiently each method can add a class to an element.
className:
element.className = "bar ";
className
property of the HTML element, specifying all classes as a single space-separated string.classList:
element.classList.add("bar");
classList
property, a modern feature that provides more versatile methods to manipulate classes, including add
, remove
, toggle
, and contains
.className
Pros:
class
attribute.Cons:
className
, you must provide the entire class string, which can lead to overwriting existing classes unintentionally.classList
Pros:
add
and remove
improve code readability and intent.Cons:
classList
property, although it's highly supported in modern environments.The results indicate that the benchmark for className
achieved 21,707,038 executions per second, vastly outperforming the classList
method, which achieved 6,493,166 executions per second. This stark difference suggests that in this specific case, className
is more efficient for adding a single class to an element in the browser environment tested.
className
.className
and classList
should also consider the context. For modern applications, the ability to easily manage multiple classes with classList
often outweighs the raw performance metrics unless performance is critical in highly dynamic applications.In conclusion, while the benchmark shows that className
is faster in this specific test case, modern JavaScript development generally favors classList
due to its greater flexibility and readability, especially in applications where class management can be complex.