Problem Statement
How do you manage environment variables in Node.js?
Explanation
Environment variables store secrets like API keys and database URLs. You can use `process.env` or a library like dotenv to load them from a .env file. Never hardcode secrets in code.
Code Solution
SolutionRead Only
require('dotenv').config();
const dbUrl = process.env.DATABASE_URL;