Below is my code
Same code is working in local server but not in live.
htmlC = \"\";
htmlC += \'
Adding a note, this error is likely to be thrown when looping using a malformed do..while inside another loop.
For the record the following snippet can throw this error when removing i++, or a bad condition in the while.
["h","e","l","l","o"].forEach(function(e){
var k = ["w","o","r","l","d"]
var i = 0
do
k[i] = e+k[i],i++
while (i < k.length)
console.log(k)
})