Can anyone help me what this small piece of code is doing in JavaScript? Actually, I am getting data from express server in Json form and when I render my page I want to access that data in my client JavaScript and this solution I got from another question in Stack Overflow (Accessing Express.js local variables in client side JavaScript), but I am not able to understand this syntax.
var local_data =!{JSON.stringify(data)};
I am trying to interpret this but cant understand. I am using handlebars as my template engine.