I want to know about what exactly is being done with variable a
in below function :
function c(a) {
var b = new Date;
return Math.round(b.getTime() / 1e3 + (a ? a : 0))
}
Code that needs clarity:
(a?a:0)
Just want to know what is the logic of highlighted text.