Given I have a sentence:
var testsentence = 'This "is" a wonderful "sentence" to "test" "stuff"';
How can I get an array like that?
var testarray = [ "is", "sentence", "test", "stuff" ]
UPDATE
I am using the Chromium console to try your response, but so far all the responses return:
[""is"", ""sentence"", ""test"", ""stuff""]
I don't want to have quotes in my matches.