@sergerdn I'm not saying its a bug, I'm explaining to other people how to do it properly if they are facing the error. Did you even read the post 🤦♂️
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? -
@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