I need a function to return true if the given variable name is already defined by javascript engine or browser.
For example
isNative('window') //true;
isNative('Math') //true;
isNative('myVar') //false
isNative('navigator') //true
isNative('document') //true