Get selected a checkbox in checkbox array

Get selected a checkbox in checkbox array

I am having an array of checkboxes like:

<input type="checkbox" value="8029" id="chk_status110" name="chk_status[]"> where each having its own unique id and value. How can i check / uncheck specific so that it should automatically get its id and check it if it is unchecked or uncheck it if it is checked.

When i try $(':checkbox').prop('checked', true);  it selects all and not a specific one when i click on its label.