I am not really know how to use it. For example, if I write this script in execute Javascript:
"
var dmy = new Date();
var d = dmy.getDate();
var m = dmy.getMonth()+1;
var y = dmy.getFullYear();
"
Is it possible to return value through ExecJS? If it is possible, how can I achieve this? Thank you.