Skip to content Skip to sidebar Skip to footer

One-line If Vs && In Javascript

Is there any meaningful difference between condition && console.log('this may run'); and if (condition) console.log('this may run); If not, which is a best practice?

Solution 1:

There is no difference as such, but you can say that the former one is the shorthand notation of the later one.

I would suggest you to use the later condition, it makes the code more explainable, producing the same results and with the almost the same number of characters.

Solution 2:

If only you may ever maintain the code, then use the one you like.

If someone else may need to read or maintain it, then use the second.

Post a Comment for "One-line If Vs && In Javascript"