Context: I’ve just set up a Redux store and have logged this store.
What the hell is the difference between [Function]
and [Function: c]
? In fact, what does the latter even mean?
My best guess is that somewhere behind the scenes, Redux created a named function called “c” (function c() {}
) then assigned it to the subscribe object property (MyStore.subscribe = c
).
This is most likely wrong though, and I’m extremely confused.
(I doubt this has anything to do with Redux)