let b9 = [{id: 1, b: 'Quantum Break'}, {id: 2, b: 'Mass Effect: Andromeda'}];
function t9() {
b9.forEach(function(elem) {
elem.b = elem.b.toLowerCase();
});
}
t9();
console.log(b9);
let a9 = ['Quantum Break', 'Gears of War 4', 'Mass Effect: Andromeda', 'Far Cry Primal'];
let b9 = a9.map((item) => item.toLowerCase());
console.log(b9); //["quantum break", "gears of war 4", "mass effect: andromeda", "far cry primal"]