Guest User

Untitled

a guest
Sep 26th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. const condition = /abc/g;
  2. condition.test('abc'); // true
  3. condition.test('abc'); // false
  4. condition.test('abc'); // true
  5. condition.test('abc'); // false
Add Comment
Please, Sign In to add comment