In your example, there is no difference between
jQuery(this)[ state ? "show" : "hide" ]();
and
state ? jQuery(this).show() : jQuery(this).hide();
However, squares can be used to call a function without it's name:
var myFunctionName = 'show';
jQuery(this)[ myFunctionName ]();
Why this is useful ? In the above example, its totally useless. But we can find some situations where it could be nice:
// list of available methods
var effects = [ 'hide', 'slideUp', 'fadeOut' ];
// get a random index between 0 and effects.length-1 (2 in this case)
var randomIndex = Math.floor(Math.random() * (effects.length));
// get the method name
var methodToCall = effects[ randomIndex ];
jQuery(this)[ methodToCall ]();
This snippet will choose one random method and call that method over the jQuery object. Isn't that nice ? :)