In my database I have
id , coluna1, coluna2
1 , 38.951399 , -76.958463
2 , 38.942855, -76.959149
I'm using php
I need to transform this information into an array in JavaScript with the following structure
new Array([38.951399, -76.958463], [38.942855, -76.959149]);