There is a string, I want to test if the string has multiple words in it, one simple way is to use the loop and includes() method, but I wonder would it possible to use RegExp to check. it
for example, the string is 'we could accumulate it at the price below 4000' , I need to check if the string has a combination of the words 'accumulate', 'price', 'below'.