I am trying to get an array of numbers from a string that does not have a token to use as a split.
Example:
var myString = 'someString5oneMoreString6';
Expected result :
var result = [5, 6];
How to archive this with javascript before ES2015?