@ptt-bds à chào bác, hiện mình không có tham gia nhóm nào về BAS hết bạn, m tự nghiên cứu + tham gia diễn đàn + kết hợp với 1 số pro thôi bác à.
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