GithubHelp home page GithubHelp logo

Comments (2)

yungsters avatar yungsters commented on April 20, 2024

@joselcc Thanks for investigating and providing all the actual patterns that materialize on the different browsers. This is way more thorough than anything I originally did because I never intended for the actual idx runtime function to be used in production.

Given that there may not be a way around this in Edge / IE and that babel-plugin-idx exists, I'm not sure there is much to be done here. What do you think?

from idx.

sunilkumar060 avatar sunilkumar060 commented on April 20, 2024

FireFox
// Access to a property of an object set as undefined
var a = undefined;
a.someProperty
TypeError: a is undefined
// Access to a property of undefined (global object)
undefined.someProperty
TypeError: undefined has no properties

IE and EDGE
// Access to a property of an object set as undefined
var a = undefined;
a.someProperty
Unable to get property 'someProperty' of undefined or null reference
// Access to a property of undefined (global object)
undefined.someProperty
Unable to get property 'someProperty' of undefined or null reference

can I get solution to these errors

from idx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.