I am using JQuerys datepicker to retrieve dates. I am getting a date in the following string format Fri May 01 10:24:33 BST 2015.
I know you can convert strings in Javascript like
new Date('2011-04-11')
or
new Date('2011-04-11T11:51:00')
Does anyone know how i can i can convert Fri May 01 10:24:33 BST 2015 format to a date in Javascript?