Does by any chance javascript template strings are disabled and cannot be used along smartclient? I am using the latest version of Chrome browser, and when i try the browser console it seems that it works, but inside my smartclient app it's not working for some reason, it just returns a null value for the variable. I use the below code for testing, but no luck.
It was supposed to print: "this is a test: red", but instead it prints: "this is a test:"
Using SmartClient Version: v11.1p_2021-05-26/Enterprise Deployment (built 2021-05-26)
Thanks!
Code:
let circle_color = 'red'; console.log(`this is a test: ${circle_color}`);
Using SmartClient Version: v11.1p_2021-05-26/Enterprise Deployment (built 2021-05-26)
Thanks!
Comment