How must I compare array field in jquery?

How must I compare array field in jquery?

I have a jquery script as:
  1. <script type="text/javascript">
  2.         $(function () {
  3.             $("#table").DataTable();

  4.             $( "#table_content" ).sortable({
  5.               items: "tr",
  6.               cursor: 'move',
  7.               opacity: 0.6,
  8.               update: function() {
  9.                   sendOrderToServer();
  10.               }
  11.             });

  12.             function sendOrderToServer() {

  13.               var order_menu = [];
  14.               $('tr.row1').each(function(index,element) {
  15.                 order_menu.push({
  16.                   id: $(this).attr('data_entry_id'),
  17.                   nameRoot: $(this).attr('data-id'),
  18.                   position: 
  19.                     ????
  20.                 });
  21.               });
  22.             }
  23.         });
  24.     </script>  
I want Position field will increase to 1 if nameRoot field == NULL. How should I do? Thank you very much :)