JavaScript check if value is only undefined, null or false

后端 未结 9 2036
暗喜
暗喜 2021-01-31 08:09

Other than creating a function, is there a shorter way to check if a value is undefined,null or false only in JavaScript?

9条回答
  •  日久生厌
    2021-01-31 08:21

    Using ? is much cleaner.

    var ? function_if_exists() : function_if_doesnt_exist();
    

提交回复
热议问题