The question at hand is quite simple yet lacks a definitive answer. I have an object and my objective is to take each key and value pair, transform them into objects, and then push them into an array. To illustrate this, consider the example below.
{
title: "This is a Title",
name: "This is a name"
}
After transformation:
[
{title: "This is a Title"},
{name: "This is a name"}
]