xxxxxxxxxx
If you are getting this error this means that any variable which you are using to store a string
is not terminated due to double inverted commas or single inverted commas:
eg:
var str="Shivesh
var str1 = 'shivesh
----------> notice how the inverted commas are not closed
Close the inverted commas and apply semicolon if necessary to terminate the string and the
error :)
var str="Shivesh";
var str1 = 'shivesh';
xxxxxxxxxx
If you are getting this error this means that any variable which you are using to store a string
is not terminated due to double inverted commas or single inverted commas:
eg:
var str="Shivesh
var str1 = 'shivesh
----------> notice how the inverted commas are not closed
Close the inverted commas and apply semicolon if necessary to terminate the string and the
error :)
var str="Shivesh";
var str1 = 'shivesh';