You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When assigning a variable to an anonymous function, that function should get its name from the variable. Example:
test=function(){}test.name
should be test. This should work with normal functions and with lambda functions (and with classes, one day).
It should also work with operators such as ||= or &&|=.
The text was updated successfully, but these errors were encountered:
When assigning a variable to an anonymous function, that function should get its name from the variable. Example:
should be
test
. This should work with normal functions and with lambda functions (and with classes, one day).It should also work with operators such as
||=
or&&|=
.The text was updated successfully, but these errors were encountered: