I have some functions assigned to a variable like:
var WEBRTC_PEER_CONNECTION = ( window.webkitRTCPeerConnection ||
window.mozRTCPeerConnection ||
window.RTCPeerConnection );
When I try WEBRTC_PEER_CONNECTION in the Browser's console, it gives me undefined. But, when I try the following directly, I get the function:
( window.webkitRTCPeerConnection || window.mozRTCPeerConnection || window.RTCPeerConnection );
OUTPUT:
function RTCPeerconnection() { code }
Why, is it so?
