Yeah, in javascript you can use the in operator: `if ("requestFullscreen" in elem)` , but it's not supported in cljs.
goog.object/containsKey is just a wrappor for the `in` opeartor.
goog.object.containsKey = function(obj, key) {
return obj !== null && key in obj;
};