im having trouble returning an array that contains decimal values to a variable:
function foo() { var coords = new Array(39.3,18.2); console.log(coords[1]); //successfully logs 18.2 ...