show/hide this revision's text 2 deleted 2 characters in body

OK, looks like I had the right answer unless if you don't want inherited properties:

if (x.hasOwnProperty('key'))

Here are some other options to include inherited properties:

if (x.key) // quick and dirty but does the same thing as below.

if (x.key !== 'undefined')
undefined)
show/hide this revision's text 1

OK, looks like I had the right answer unless if you don't want inherited properties:

if (x.hasOwnProperty('key'))

Here are some other options to include inherited properties:

if (x.key) // quick and dirty but does the same thing as below.

if (x.key !== 'undefined')