Is there an "is instance of" property or function?

is there an “is instance of” property or function?

for example, i added a mouse_down event listener on the stage. On the stage, there are instances of an apple class and instances of orange class, both of which extends the Sprite class.

is there some sort of property for:

if (evt.target.“is instance of” == apple)
{
trace (“you clicked an apple”)
}

i tried
if evt.target == apple, but it doesnt work.

Thanks for any help =)