Articles in this series
let myArray = []; function insert(key, value) { let obj = {}; obj[key] = value; myArray.push(obj); } insert("name", "John"); insert("age",...