@isaacjaco49111 said in join a resource with a variable:
@Fox I understand, so for example if I have 20 accounts and I want to obtain resource 18, should I create 18 resources?
Create one resource and put the data of 20 accounts in it
Do functions themselves carry referenceable names.
Is there a way to make each function name be a variable without setting variable each time?
@hellomembersha said in Function Variable:
Do functions themselves carry referenceable names.
Is there a way to make each function name be a variable without setting variable each time?
"Execute code"
[[NEW_VARIABLE]] = function(){log("hello")};
Use [[NEW_VARIABLE]](), type expression
Thank you fox