What does the process.env object contain?
- A Command line arguments
- B Environment variables available to the process
- C The list of loaded modules
- D The current working directory only
Answer
Environment variables available to the process
process.env is the standard place to read configuration and secrets, keeping them out of source control. Values are always strings.





