Please explain me what does || signal means in javascript. I have some lines like this:
a=a||{};
a.checkURL=a.checkURL||window.location.href;
a.checkInterval=a.checkInterval||5E3;
This code use || signal many times. May anybody help me to explain.