|
|
|
|
|
by simonw
681 days ago
|
|
It took me far longer than I'd like to admit for "import *" in modern JavaScript to make sense to me. Python imports made sense straight away - but then I've been a Python programmer for a long time so I'm far removed from a beginner's perspective. |
|
Maybe you meant bare imports?
In that case it only means: execute the code from that module, I don't care about importing stuff. If they set a global variable or interact with other modules I might use it.