matches javascript code example
Example 1: js match any number string
const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1]
Example 2: matches method in javascript
<ul id="birds">
<li>Orange-winged parrot</li>
<li id="h" class="endangered">Philippine eagle</li>
<li>Great white pelican</li>
</ul>
<script type="text/javascript">
var birds = document.getElementsByTagName('li');
for (var i = 0; i < birds.length; i++) {
if (birds[i].matches('#h')) {
console.log('The ' + birds[i].textContent + ' is endangered!');
}
}
</script>