...

/

اختبر نفسك في المواضيع المتقدمة في Node.js

اختبر نفسك في المواضيع المتقدمة في Node.js

اختبار قصير حول مواضيع Node.js التي تمت تغطيتها هنا قبل الانتقال إلى الفصل التالي.

سنغطي ما يلي...
1

What will be the output of this code?

process.on('beforeExit', () => {
  console.log('blue');
});

process.on('exit', () => {
  console.log('green');
});

console.log('red')
process.exit()
A)
red
blue
B)
red
green
C)
red
blue
green
Question 1 of 50 attempted