Coder Social home page Coder Social logo

Comments (2)

 avatar commented on May 26, 2024

Verification result.

The results in my environment are as follows.
Target Browsers: IE 9, Chrome 42, Firefox 36.

Property "aaa" is undefined Property "aaa" is null
aaa === void 0 true false
aaa == void 0 true true
typeof aaa === 'undefined' true false
typeof aaa == 'undefined' true false
aaa === undefined true false
aaa == undefined true true
aaa === null false true
aaa == null true true

Proper use.

Is it necessary to distinguish "undefined" from "null" exactly?

  • If necessary, you should use '==='.
  • If not necessary, you should use '=='.

from opentouryo.

daisukenishino avatar daisukenishino commented on May 26, 2024

Conclusion

Proper use.

Is it necessary to distinguish "undefined" from "null" exactly?

  • If necessary, you should use '==='.
  • If not necessary, you should use '=='.

Therefore, following the error.

// hiddenがnullになることがある・・・ 
if (childScreenType == null || childScreenType == undefined) { // This is redundance.
  return; 
} 

Properly, as follows.

// hiddenがnullになることがある・・・ 
if (childScreenType == undefined) { // Can check the undefined or null.
  return; 
}

Recommended check method of the attributes that is defined on the tag.

if (event.srcElement.attributes.xxxx == undefined) { // Can check the undefined or null.
  // xxxx属性が定義されていない場合、
  // ・・・
}
else {
  // xxxx属性が定義されている場合
  if (event.srcElement.attributes.xxxx.value == undefined) { // Can check the undefined or null.
    // xxxx属性がundefined or nullの場合、
    // ・・・
  }
  else if (event.srcElement.attributes.xxxx.value.toLowerCase() == "true") {
    // xxxx属性がtrueの場合、
    // ・・・
  }
  else {
    // xxxx属性が上記以外の場合、
    // ・・・
  }
}  

from opentouryo.

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.