isset [function]

isset( var, key )

returns whether a property key is readable (exists) in variable var

x = { a = 5 };
isset( x, "a" ); // returns 'true'
isset( x, "b" ); // returns 'false'
isset( print, "call" ); // returns 'true' -- works with built-in special properties too