how to check complete match in javascript code example
Example: js match any number string
const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1] // '123'
const match = 'some/path/123'.match(/\/(\d+)/)
const id = match[1] // '123'