Tell us what’s happening:
I checked that this the correct solution according to step 75, but it won’t submit. Is this an issue with step 74 itself?
// User Editable Region
const highPrecedence = str => {
const regex = /([\d.]+)([*\/])([\d.]+)/;
return regex.test()
}
// User Editable Region
im59138
2
when you ask for help always give the link to the step please
this seems incomplete. If you provide the link, we can check more
.test() needs an argument, doesn’t it?
1 Like
lasjorg
5
As said, .test()
is called on the regex and passed the string.
someRegx.test("someString");