Dapatkan semua nilai di bidang tersembunyi dengan nama yang sama

<!--html-->
<input type="hidden" name="customerID" id="customerID1" value="aa190809" />
<input type="hidden" name="customerID" id="customerID2" value="aa190810" />
<input type="hidden" name="customerID" id="customerID3" value="" />

<script>
$("input[name=customerID]").each(function(){
    //get attributes
    console.log(this.id + " with value: " + this.value);
    
    //set values
    if (this.value == "") {
      this.value = "my new value";
    }
    
});
</script>
Ivan The Terrible