My javascript object looks like the example below, I am wondering how I should write a swap function to change the element position in the object. For example, I want to swap two elements from position 1 to 2 and 2 to 1.
{
  element_name_1 : {
    //.. data
  }
  element_name_2 : {
    //.. data
  }
  element_name_3 : {
    //.. data
  }
  element_name_4 : {
    //.. data
  }
}
Now I want to swap element_name_2 with element_name_1.
 
     
    