I want to log each occurrence of the letter an in this array, the expected output should be 3 a's, but there are none because it does dot read nested arrays does anyone know a solution.
let items = [["a","b"],["c","a"],["b","a"]];
items.forEach((v) => (v === "a" && console.log(v)));