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 6551153
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T12:18:04+00:00 2026-05-25T12:18:04+00:00

Here is an object: var obj = new function(){ this.prop = {}; } and

  • 0

Here is an object:

var obj = new function(){
    this.prop = {};
}

and I try to do something like:
obj.prop.prototype["new_attr"] = "some_value";

What I’d like to do, is permanently modify obj.prop to contain the new attributes. From what I understood, all “Objects” had the prototype, but JavaScript is telling me prop doesn’t have prototype.

Maybe I’m taking the wrong approach (in trying to permanently modify prop), but I’d at least like to know why the code above doesn’t work.

  • 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-25T12:18:05+00:00Added an answer on May 25, 2026 at 12:18 pm

    Typically you access the prototype object from the constructor function, but you can get it from an object as well, but not using .prototype.

    The unofficial way (not supported in all browsers) to get the prototype object of an object is with the __proto__ property. (I believe it is deprecated in the browsers that support(ed) it).

    The official ECMAScript 5 way (also not supported in all browsers) to get the prototype object of an object is to use Object.getPrototypeOf().

    In your case .prop is referencing an object literal, so you already know that the prototype is Object.prototype.

    Object.getPrototypeOf( {} ) === Object.prototype;  // true
    

    Note that it is almost always a bad idea to extend Object.prototype.


    “Maybe I’m taking the wrong approach (in trying to permanently modify prop), but I’d at least like to know why the code above doesn’t work.”

    If you’re just trying to modify the object referenced by .prop, then simply do:

    obj.prop.new_attr = "some_value";
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This is my code: $(document).ready(function(){ $('.filter_users').live('click', function() { var obj = jQuery.parseJSON('{name:John}'); alert( obj.name
Here's a simple method with a foreach loop: IEnumerable<XElement> FieldsToXElements(object instance) { var fieldElements
Here's my binding source object: Public Class MyListObject Private _mylist As New ObservableCollection(Of String)
Here's the thing: object[] arrayText = new object[1]; if (arrayText[1] == null) { MessageBox.Show(Is
here is what a I'm doing: object ReturnMatch(System.Type type) { foreach(object obj in myObjects)
Here is my function: private void btnSave_Click(object sender, EventArgs e) { wO_FlangeMillBundlesTableAdapter.Update(invClerkDataDataSet.WO_FlangeMillBundles); wO_HeadMillBundlesTableAdapter.Update(invClerkDataDataSet.WO_HeadMillBundles); wO_WebMillBundlesTableAdapter.Update(invClerkDataDataSet.WO_WebMillBundles);
I'm new to prototype-based languages and have read this question: Preserving a reference to
I am struggling with methods in JavaScript. obj = function(){ this.getMail = function getMail
I am really confused with this one. Here's my code class inner { var
Yesterday I found this function: function clone(obj) { return typeof obj === 'undefined' ?

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.