I'm using the following code to make a post.
var checked = ["2231","2432"];
jQuery.ajax({
type: 'post',
url: statusUrl,
data: {"entries":checked},
...
However, when it actually posts, Post Data on server side and inspection in developer tools is always
{entries[]: 2342 etc}
Why are the square brackets appearing? How can I get rid of it?