I have this code in a index.html file to render some plots using flask. The code is working but VSCODE keeps warning me about a Declaration or Statement expected error in lines 1 and 2:
As i am not a javascript programmer, can someone help me with this?
<script type="text/javascript">
(1)var figures = {{figuresJSON|safe}};
(2)var ids = {{ids|safe}};
for(var i in figures){
Plotly.plot(ids[i],
figures[i].data,
figures[i].layout || {});
}
</script>
that link didnt help me