Test name | Executions per second |
---|---|
array.some | 85540080.0 Ops/sec |
regex.test | 52745056.0 Ops/sec |
var appState = "active";
var regex = /inactive|background/;
var array = ['inactive', 'background'];
array.some(v => v === appState)
regex.test(appState);