A pot
Rue
A pot
Rose
A pot
Rye
A pot
Rosemary
A pot
Rice
A pot
Primrose
12345
let garden = [
	"Rue", "Rose", "Rye", 
	"Rosemary", "Rice", 
	"Primrose"
];
123456
for  (const plant of garden) {
if (plant.match(//i) {
water(plant);
}
}
Lesson 2 / 42

Lesson task •

Water every plant, containing "rose" at any place and case

flag i

Makes regular expression case insensitive

To make regular expression case insensitive one should use a special flag - i - after the main pattern of the regexp:

12
console.log(!!"Foo Bar".match(/foo/)) // false 
console.log(!!"Foo Bar".match(/foo/i)) // true 

Note: from here on all the regular expressions will include this flag, beware.