I was reading this link JavaScript_syntax
This seems to be cyclic – that every function is an Object and every Object itself is a function. Which is the atomic one? Can someone explain in a better way?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Anything that is not a primitive type (undefined, null, number, string, boolean) is an object (or an instance) in JavaScript. That means
functioninherits fromobject.Object instances can contain more instances which can be functions. That’s what we call a “method” (since it has an automatic
thisvariable).Since you can’t “call” every Object instance, not every object is a function.