As I understand
b && "" !== b && (a[b] = this);
is just the same as
if(b && "" !== b)
a[b] = this;
Are these syntax forms equivalent?
As I understand
b && "" !== b && (a[b] = this);
is just the same as
if(b && "" !== b)
a[b] = this;
Are these syntax forms equivalent?