I have this code for making a post request, sending some data, and logging the return value
$.post '/saveletter', {start: {x: startX, y:startY}, letter: currentLetter, unitVectors: letter.unitVectorsJson(), timeVectors: letter.timeVectorsJson()}, (data) =>
console.log data
I want to split the long parameter object into several lines, for better readability, but can't figure out the syntax that will work.