79221079

Date: 2024-11-24 21:07:28
Score: 3
Natty:
Report link

I do not exactly get what you're trying to achieve, but an array in js could be filtered like this

let arr = [123,345,567,789]
    
let Search = 3
    
arr.filter(x=> x.toString().includes(Search))

// Result: [123,345]

Please let know if it helps or provide more information

Reasons:
  • RegEx Blacklisted phrase (2.5): Please let know
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Federico Crovetto