I have a javascript which takes two variables i.e two lists one is a list of numbers and the other list of strings from django/python
numbersvar = [0,1,2,3]
stringsvar = ['a','b','c']
The numbersvar is rendered perfectly but when I do {{stringsvar}} it does not render it.
Maybe it will be better to use a json module to create a javascript lists?