Performance test stuff | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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
+ 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