Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. /^[gG][a-z]+s$/.test("gardens")/ // => true
  2.  
  3. /^[gG][a-z]+s$/.test("Gardens")/ // => true
  4.  
  5. /^[gG][a-z]+s$/.test("g4rd3ns")/ // => false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement