short-circuiting variable declaration .

short-circuiting variable declaration .

hey guys,

was just going through modal.js and came across the following variable declaration , 

  1. var doAnimate = $.support.transition && animate
so does the above mean that , if $.support.transition elavuates to true and then animate evaluates to true doAnimate will be true and in all other cases doAnimate will be false ?