<html>
<body>
<h1>JavaScript Strings</h1>
<h2>The match() Method</h2>
<p>match() searches for a match against a regular expression.</p>
<p>Do a global search for "ain":</p>
<p id="demo"></p>
<script>
let text = "The rain in SPAIN stays mainly in the plain";
let result = text.match(/ain/g);
document.getElementById("demo").innerHTML = result;
</script>
</body>
</html>