Replace a single key in a json object
Hi All, I want to replace just one keyname with another name. For example: initial input : { “Field1”: “bar”, “Field2”: “bar” } desired output : { “NEWNAME”: “bar”, “Field2”: “bar” } I checked the docs and saw that we can use $.mapKeys to play with t...