The programming language is JavaScript.
Imagine we have an array filled with positive and negative integers mixed in with other letters (e.g. 1a or -2d). The challenge is to figure out how to select all the strings that start with or contain positive integers using regular expressions. I am inexperienced with regex and attempted to use /^[0-9]/.test(...) without success. Are there any alternative solutions you can suggest?