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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T05:28:13+00:00 2026-05-20T05:28:13+00:00

Im wondering if someone might be able to help me with something that i

  • 0

Im wondering if someone might be able to help me with something that i think it fairly straight forward:

Essentially i want to extend the prototypes of all datatypes (including intrinsic types), to allow some kind of custom functions, consider:

var x = "some string";
var y = 101;

x = "some other value";
y++;

x.onChange();
y.onChange();

This is the basic idea im after, but really what i want is to actually have the onChange (in this example) to be different so a new function for the actual variable (rather than a stardard prototype extension), ie:

x.onChange = function() {
    alert("x.onChange");
}

y.onChange = function() {
    alert("y.onChange");
}

This doesnt seem to work but i must be missing something quite simple no? I mean surely i can extend all object and types and add on new functions… no?

Any help would be greatly appreciated!

  • 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-20T05:28:13+00:00Added an answer on May 20, 2026 at 5:28 am

    I might be tempted to approach this not by trying to add methods to existing types, but to create an object that can wrap a primative type. I would call this “observing” a value, and might implement it something like this:

    function observable(v){
        this.value = v;
    
        this.valueChangedCallback = null;
    
        this.setValue = function(v){
            if(this.value != v){
                this.value = v;
                this.raiseChangedEvent(v);
            }
        };
    
        this.getValue = function(){
            return this.value;
        };
    
        this.onChange = function(callback){
            this.valueChangedCallback = callback;
        };
    
        this.raiseChangedEvent = function(v){
            if(this.valueChangedCallback){
                 this.valueChangedCallback(v);
            }   
        };
    }
    

    This can then be used to observe changes in any value (so long as that value is then changed only by methods on the observable class – a small detraction IMO).

    Something like this would work with the above code:

    var obs = new observable(123);
    obs.onChange(function(v){
             alert("value changed to: " + v);
         });
    
    // the onChange callback would be called after something like obs.setValue(456);
    

    Live example here –> http://jsfiddle.net/MeAhz/

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

Sidebar

Related Questions

I was wondering if someone might be able to help me solve the Lotka-Volterra
I was wondering if someone might be able to help me with this. I
I'm a noob at this and was wondering if someone might be able to
I might be asking too much, but I was wondering if someone could help
I was wondering if someone might be able to demonstrate how to use Type's
Wondering if someone could help me. I have next to no knowledge with Ajax,
Just wondering if someone could help me with a very simple SQL query. I
I was wondering if someone could tell me what I am doing wrong that
I was wondering if someone could help me understand this problem. I prepared a
I was wondering if it is possible for someone to help me shorten the

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.