Sorry if my question is silly, but i didn't find any sufficient answer on this.
I was creating a Facebook login just for training in my personal page. Studying on Internet i found that i need to provide some Facebook info like:
clientID: process.env.CLIENT_ID
So, i supposed that it would be (e.g)
clientID: process.env.8483843285375325blabla
But after struggling for a while, i figured out that the proper way was
clientID: process.env.CLIENT_ID || '8483843285375325blabla'
So what the || stands for? When we use it? I have used it as an OR logical operator in other programming languages.