I have an ajax code as below :
<script>
  $(document).ready(function () {
  EmployeeStates("Available", 1, 15);
});
function EmployeeStates(state, pageNumber, pageSize) {
  $.ajax({
    type: "GET",
    contentType: "application/json; charset=utf-8",
    url: "http://localhost:58102/api/EmployeeState?state=" + state + "&pageNumber=" + pageNumber + "&pageSize=" + pageSize,
    //data: JSON.stringify({ "state": state,"pageNumber":pageNumber,"pageSize":pageSize }),
    dataType: "json",
    success: function (data) {
      $.each(data, function (index, emp) {
        $("#ReservationDesignation").append(emp.employee.designation.designationName);
      });
    },
    fail: function (error) {
      Console.Log(error);
    }
  })
}
</script>
While assigning the Designation name (emp.employee.designation.designationName) to #ReservationDesignation, I am getting a duplicate. ie, ArchitectArchitect. The actual result should be Architect.
I am not familiar with .each() function.
Can anyone help me to remove the duplicate from the result?
Thank You.
 
    