العالمية
تعرف على كيفية عمل العناصر العالمية في Node.js
سنغطي ما يلي...
سنغطي ما يلي...
Everywhere
Global objects, or simply globals, are available in every module. This allows them to be used without importing a specific module. Modules like fs
and events
need to be imported; however, some objects, like buffer
, did not need to be imported. The Buffer
class is defined ...