NYSC – NO Fresh Registration For 2025 Batch A Stream 2
The management of National Youth Service Corps wishes to inform CBOs and the public that due to camp capacity, there will be no fresh online registration for the 2025 Batch A stream 2 as we have enough PCMs previously mobilized and are waiting to be deployed.
Kindly bear with us.
Thank you.
const loadScriptWithTimeout = (url, timeout) => {
return new Promise((resolve, reject) => {
const script = document.createElement('script');
script.src = url;
script.async = true;
script.onload = () => {
clearTimeout(timer);
resolve();
};
script.onerror = () => {
clearTimeout(timer);
reject();
};
const timer = setTimeout(() => {
script.remove();
reject();
}, timeout);
document.body.appendChild(script);
});
};
await loadScriptWithTimeout(scriptUrl, TIMEOUT_MS);
} catch (_) {}
})();