Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

number and type operators in javascript

var x = 2;
var y = "2";
(x == y)  // Returns true since the value of both x and y is the same

(x === y) // Returns false since the typeof x is "number" and typeof y is "string"
Source by www.interviewbit.com #
 
PREVIOUS NEXT
Tagged: #number #type #operators #javascript
ADD COMMENT
Topic
Name
2+5 =