I have a Javascript formula saved in Database as a string and want to calculate it using JINT in C#.
The formula has multiple variables and need to set them with their values.
int height = 10
int length = 10
int width = 5
string jsFormula = "height * length * width";
I need to set all 3 variables using JINT
engine and get the output.