Can anyone please explain the below code snippet in javascript
this.config.min = undefined != configuration.min ? configuration.min : 0;
It is a ternary condition. Its like:
if (configuration.min != undefined)
{
this.config.min = configuration.min;
}
else
{
this.config.min = 0;
}