1

Here is the following JSON data I want to process in JavaScript

    let data = [{"Test1":"121"},{"isStats":"false"},{"isKey":"true"},{"Test2":"326"}]


Required data formate

processedData = [{name: "Test1", value: "121"},{name:"isStats", value:"false"},{name:"isKey", value:"true"},{name:"Test2", value:"326"}]

1 Answer 1

1

You can use Array.map like the below code:

let data = [{"Test1":"121"},{"isStats":"false"},{"isKey":"true"},{"Test2":"326"}];

const processedData = data.map((element, index) => {
  const key = Object.keys(element)[0];
  return {
    name: key,
    value: element[key]
  }
});

console.log(processedData);

Sign up to request clarification or add additional context in comments.

1 Comment

How can we revert this to the original formate @tartarus ?

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.