Hi,
I have a list of names, which I render at two different places in a HTML at one place it works fine, the other time it disappears.
names= ['a','b','c','d']
In the HTML code I am printing
{{names}}
this gives me the correct results. When I use the same string in a javascript it stops working but if I replace the variable by
['a','b','c','d']
then it works fine.