Node.js - Cluster Module
What will be the output of this Node.js cluster code snippet?
const cluster = require('cluster');
if (cluster.isPrimary) {
cluster.fork();
cluster.fork();
console.log('Number of workers:', Object.keys(cluster.workers).length);
} else {
console.log('Worker PID:', process.pid);
}