Why is typeof stringVariable not equal to String;
console.log(typeof 'hello' === String) // returns false
Why does js behave like this?
JavaScript
x
7
1
let arr1 = ['nabeel', 'aron', 123, true]
2
// find
3
let result = arr1.find(function(item, index, array) {
4
console.log(typeof item, typeof item === String)
5
return (typeof item === String)
6
})
7
console.log("[Find()] String type item exists : ", result)
Advertisement
Answer
typeof ‘hello’ will return as ‘string’ (as string type) typeof 5 will return as ‘number’ (as a string)