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

  • Home
  • SEARCH
  • 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 8460643
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:39:51+00:00 2026-06-10T13:39:51+00:00

How do getter or setter works on object in javascript ? i.e. In python

  • 0

How do getter or setter works on object in javascript ?

i.e.

In python if I call a nonexistent method on an object I could intercept the call via getter and setter and in turn return from getter and setter.

How do I do similar functionality in JavaScript ?

https://github.com/Flotype/now/blob/master/lib/client/now.js implements this functionality somehow. I didn’t understand the trick. can anyone explain ?

  • 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-06-10T13:39:53+00:00Added an answer on June 10, 2026 at 1:39 pm

    Creating the same functionality is virtually impossible in Javascript. My best guess would be something like this:

    var getter = function (propName) { 
        if (propName in this) { 
            return this[propName]; 
        } else { 
            return "no prop"; 
        } 
    };
    

    You can call this function on any object you like using this syntax:

    a = { "test": "yes" };
    b = {}
    console.log(getter.call(a, "test"));
    console.log(getter.call(b, "test"));
    

    It’s not the best solution but I don’t think there’s a better way.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How can you describe the parameters and return type (getter/setter) of your PHP functions?
Currently have this code defining getter/setter for an object's selectedID property. The object is
Before you ask why there is an object using a setter and getter to
I try to use getter/ setter with static function. Inside a mxml file, I
i have a class: class MyClass { @Getter @Setter int a; @Getter @Setter int
I remember using some attribute on the getter/setter that would limit the input to
I have two domain classes (getter setter of two tables): Contact Information and Address
I am using a magic getter/setter class for my session variables, but I don't
I know that properties kind of encapsulate getter and setter methods. So whenever we
I want Eclipse to automatically generate Javadoc comments for my getter and setter methods

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.