function myclass(a,b,c,d)
{
this.a = a;
this.b = b;
this.c = c;
this.d = d;
}
example = new myclass(1,2,3,4);
const fieldnames = ["a","b","c","d"];
fieldnames.forEach(function(el){console.log(example[el])})
// 1
// 2
// 3
// 4
PS вообще, вам любой цикл тут подойдет, в том числе и for in