/regexp/i
var str="This is an antzone good"; var reg=/this/;console.log(str.match(reg));
var str="This is an antzone good"; var reg=/this/i;console.log(str.match(reg))