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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T01:06:07+00:00 2026-06-04T01:06:07+00:00

How to delete a function from constructor? If there is a function called greet

  • 0

How to delete a function from constructor?

If there is a function called greet in the Person constructor, how do I remove the function?

function Person(name)
{
    this.name = name;
    this.greet = function greet()
    {
        alert("Hello, " + this.name + ".");
    };
}

I want the result to be:

function Person(name)
{
    this.name = name;
}
  • 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-04T01:06:09+00:00Added an answer on June 4, 2026 at 1:06 am

    You cannot change the source of a function. If you want to change that function’s behaviour, you have to options:

    Override the function with your own. This is easy if the function is standalone. Then you can really just define

    function Person(name)
    {
        this.name = name;
    }
    

    after the original function was defined. But if prototypes and inheritance are involved, it can get tricky to get a reference to the original prototype (because of the way how function declarations are evaluated).

    Ceate a wrapper function which creates and instance and removes the properties you don’t want:

    function PersonWrapper(name) { 
        var p = new Person(name); 
        delete p.greet; 
        return p;
    }
    

    This approach is also limited since you can only change what is accessible from the outside. In the example you provided it would be sufficient though.

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

Sidebar

Related Questions

$(.delete).click( function() { var thesender = this; $(thesender).text(Del...); $.getJSON(ajax.php, {}, function(data) { if (data[result])
<script type=text/javascript> $(document).ready(function($) { $(a.delete).click{function(){ $(this).parent().remove(); } }); </script> <li> <a href=index.html> <h3>1</h3> </a>
From the documentation: If the platform supports the unsetenv() function, you can delete items
I have a function: $(.delete).click(function() { $.ajax({ url: ServerHandler.ashx, data: mode=delete&item= + $(this).attr(title), success:
I have a listener like this: $('.delete').click(function() { ...some stuff }); Also, on the
I have the following function in my jQuery code: function checkUNSelectBox(item){ $('#DELETE option').each(function(){ <!--alert(item);-->
I cant understand why in the class constructor I can call this function but
How do I remove double (delete) errors from shallow copied object vs original object.
I've been trying to implement a delete function for a Binary Search Tree but
$(#button_title_delete).click(function(){ jQuery.ajax({type:'POST', url:'delete.php', data: 'id='+$(bid).val(), success: function(veri) { $(#delete_result).html(veri);} }); }); When i click

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.