issues
search
6pac
/
SlickGrid
A lightning fast JavaScript grid/spreadsheet
https://stackblitz.com/github/6pac/SlickGrid/tree/master/vite-demo
MIT License
1.85k
stars
424
forks
source link
perf(core): convert `for..in` to `Object.keys().forEach` for better perf
#987
Closed
ghiscoding
closed
10 months ago
ghiscoding
commented
10 months ago
as mentioned in this
Stack Overflow
,
Object.keys().forEach
are quicker than
for..in
because the latter also loops through prototype chain.
Object.keys().forEach
are quicker thanfor..in
because the latter also loops through prototype chain.