Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

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.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5940883
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T16:01:52+00:00 2026-05-22T16:01:52+00:00

I am very new to JavaScript, so I am baffled by the following syntax:

  • 0

I am very new to JavaScript, so I am baffled by the following syntax:

if (isFunction(obj)){
  for (key in obj) {
    //do something
  }
 }

The isFunction method will return true if typeOf obj=="function". But what happens when you it says key in obj when obj is a function?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T16:01:53+00:00Added an answer on May 22, 2026 at 4:01 pm

    The for..in loop iterates over the enumerable properties of obj. Functions are objects, they have their own properties plus inherited properties from their [[prototype]] chain. See ECMA-262 §12.6.4.

    Also, don’t forget to declare variables that should be kept local.

    To address only the enumerable properties on obj and not its inherited enumerable properties, it is usual to include a hasOwnProperty test:

    for (var key in obj) {
      if (obj.hasOwnProperty(key)) {
        // key is enumerable property of obj, not inherited
      }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am very new to Javascript and was wondering why the following code will
I'm very new with Javascript. I'm trying to do something with Show/Hide functions. html:
I'm very new to javascript and I've been trying to develop something to assist
I'm very new to both the Mvc framework as well as JavaScript and JQuery.
I am very new at jQuery ... I've used Javascript many times and am
I noticed that JavaScript's new Date() function is very smart in accepting dates in
I am very new to javascript and I am having issues with timing out
I am very new in Javascript. I want to make some basic stuffs that
I am very new to javascript and ajax/jquery and have been working on trying
I'm very new to javascript & jQuery, and can't work out how to do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.