object entries to object code example

Example 1: object.keys

const object1 = {
  a: 'somestring',
  b: 42,
  c: false
};

console.log(Object.keys(object1));
// expected output: Array ["a", "b", "c"]

Example 2: javascript fromEntries

// JS fromEntries => list of key-values transformation into an object
    const keys = ["name", "species", "age", "gender", "color"];
    const values = ["Skitty", "cat", 9, "female", "tabby"];
    const run = document.getElementById("run");
    run.addEventListener("click", function () {
     	let createObj = [];
        keys.forEach((item, index) => {
            createObj.push([item, values[index]]);
        });
        const object = Object.fromEntries(createObj);
        console.log(object);
    });
// expected output = Object { name: "Skitty", species: "cat", age: 9 etc..}