Is it possible that the merging of sub variables fetches the constructed variable?
That's my script:
var a_b_c = 5000;
console.log(a_b_c); // 5000
var el_a = 'a';
var el_b = 'b';
var el_c = 'c';
console.log(el_a + '_' + el_b + '_' + el_c); // logs a_b_c
... what I would like to have is though:
console.log(el_a+'_'+el_b+'_'+el_c); // 5000
Is this anyhow possible?
Here is a fiddle: