Given this code:
var reg = /a/g;
console.log(reg.test("a"));
console.log(reg.test("a"));
I get this result:
true
false
I have no idea how this could happen. I have tested in both Node.js (v8) and Firefox browser.
|
Given this code:
I get this result:
I have no idea how this could happen. I have tested in both Node.js (v8) and Firefox browser. |
||||
|
|
|
To workaround the problem, you can remove the
The problem arises because
The key part of
When This is useful for
but obviously it isn't so useful for |
|||||||
|
|
Usually a test is chosen to check if some pattern matches at all, but the global flag lets you loop through a string to either count the matches or,like exec, do something with each lastIndex. Another use is to set the lastIndex of the rx yourself before the test is peformed, to ignore matches before some character index.
|
|||
|
|