Not everything in JavaScript is an object, how?
Everything in JavaScript is or act like an object
Not everything in JavaScript is an object, how? Most of the time we have heard that everything in JS is an object which is not true. Let me prove it through an example. var name = "jitendra"; name.hi = "hi"; console.log(name.hi); //it will print undefined It means we are not...
[Read More]