-
Notifications
You must be signed in to change notification settings - Fork 27
Open
Description
Is there anything that can be done to improve the performance of .splice
this.data = tracked([/* 10000 items */]);
console.time('splice');
this.data.splice(0, 1);
console.timeEnd('splice');
// 10msvs.
this.data = [/* 10000 items */];
console.time('splice');
this.data.splice(0, 1);
console.timeEnd('splice');
// 0.002Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels