0

Performance test stuff

I’m curious what the fastest way to find if a string includes another string is. there are some sources online but they all have different answers So which one of these (or others I haven’t included) would be the best performance? Var g = ā€˜hello world’; solution 1: g.includes(ā€˜z’) solution 2: g.indexOf(ā€˜z’) != -1 solution 3: /z/.test(g)

12th Apr 2022, 12:07 PM
ITDW
2 Answers
13th Apr 2022, 11:25 PM
CalviÕ²
CalviÕ² - avatar
+ 1
for premformence, Regex (3) is the fastes it is the most used for large data tests
12th Apr 2022, 4:15 PM
Mohamed Ayaou