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.
Post a Comment for "One-line If Vs && In Javascript"