Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

null + undefined

  console.log(null === null);  // true
  console.log(undefined === undefined);  // true
  console.log(null + undefined === null + undefined); // false

// null + undfined equals NaN, and NaN isn't equal to itself :(
Source by learn.coderslang.com #
 
PREVIOUS NEXT
Tagged: #null #undefined
ADD COMMENT
Topic
Name
1+1 =