...
Home › B3_Ampi › Helper functions
Note
Unlike scores or blackboxes, helper functions need to be defined as functions in the Script block. Helper functions cannot return anything outside of a function block, otherwise, they will fail.
Code Block |
---|
// valid
function abc() {
return 1;
}
// invalid
return 1; |
How to debug blackboxes and scores
...