.forEach()
будет работать только для массивов.
Если вам нужно перебрать свойства объекта JSON, то вот один из способов сделать это:
this.frontImages = {frontA:{name:'frontAName'},frontB:{name:'frontBName'}};
var arr = Object.keys(this.frontImages);
arr.forEach(function(value, index) {
console.log(value, this.frontImages[value]);
});