Many functions
-
Hi,
I know that we cann use functions in the calculated field, and I’ve been able to use it.
(function(){
var variable = 0;
return variable;
});Now, to have a clearer code, I thought I could use many functions, Java script-like.
function1 myFct() {
return 4;
}function2 myFct2() {
return 6;
}myFct() + myFct2();
But that code doesn’t work. Is there a way to do that? Thank you very much!!
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
The topic ‘Many functions’ is closed to new replies.