I am trying to figure out what the below syntax do. It’s code from Bootstraps popover.
//title is a string
$tip.find('.popover-title')[ $.type(title) == 'object' ? 'append' : 'html' ](title)
^ ^
What does this symbol mean? Whats happening here?
Let’s break it up:
It can be broken down into this:
And more:
A little more: