The value to return if the environment variable is not set (default is an empty string).
Returns string
The value of the environment variable or the fallback.
Example
constapiUrl = getEnv("API_URL", "https://default.api.com"); console.log(apiUrl); // Will log the value of API_URL or "https://default.api.com" if not set
Safely retrieves an environment variable.