In JavaScript, I have 1 variable contains int value and one having String. Now I want to append the string like pre-increment the int variable like below code I am getting error
var count = 0;
var message = "value of Variable Count by increment is:"+ ++count;
(++count)add brackets