Can someone explain the 'same name key:value shortcut' feature?
$.ajax(url, {
data: data,
contentType: contentType,
success: success,
error: error
});
... not so nice. So as a first stab, you can clean it up like so: $.ajax url, {data, contentType, success, error}
... but it's especially nice in the context of destructuring assignment, like for your Node.js imports, for example. {spawn, exec} = require 'child_process'