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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T10:05:45+00:00 2026-05-23T10:05:45+00:00

I am trying to implement (so-to-say) a refinement in JavaScript. Kindly look at the

  • 0

I am trying to implement (so-to-say) a refinement in JavaScript. Kindly look at the following example:

<html>
<head>
<title>Function Override (Refinement) example</title>
<script type="text/javascript">

// original function
function oneFunc() {
    document.writeln("<p> In original oneFunc() </p>");
}

var prevOneFunc = null;
if (oneFunc) {
    prevOneFunc = oneFunc;
}

// redeclared function (should refine/complement the original one)
function oneFunc() { 
    if (prevOneFunc) {
        prevOneFunc(); // should call original oneFunc(), BUT IT ISN'T
    }
    document.writeln("<p> In refined oneFunc() </p>");
}

oneFunc();

</script>
</head>
<body>
</body>
</html>

My intention was to have two printouts:

In original oneFunc()
In refined oneFunc()

However, it seems that since at the moment of execution oneFunc refers to the new/refined function, hence the output is different than expected. In the debugger checked that I am entering into the infinite recursion 🙂 (yes, understood why exactly).

Please explain which information I am missing to implement it properly.

Update: A few limitations: I think (not sure) that I can’t modify the original oneFunc declaration and it is declared just like described above. I shouldn’t modify the declaration of the refined oneFunc either.

  • 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-23T10:05:46+00:00Added an answer on May 23, 2026 at 10:05 am

    That is because of JavaScript hoisting.
    http://www.adequatelygood.com/2010/2/JavaScript-Scoping-and-Hoisting

    Try this:

    
    var oneFunc = function(){ 
    //In original oneFunc 
    };
    
    var prevOneFunc = null;
    if (oneFunc) {
        prevOneFunc = oneFunc;
    }
    
    oneFunc = function(){
    //In refined oneFunc 
    };
    
    oneFunc();
    
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

While trying to implement an MVC file upload example on Scott Hanselman's blog. I
Let's say I'm trying to implement a Chess Game. I'd create my Chess classes
I am trying to implement a function. My code is given below. I want
I'm trying to implement a weighted random numbers. I'm currently just banging my head
I am trying to implement an algorithm I found in C# in javaScript and
I'm trying to implement an HTML Parsing web service as described in Chapter 23
I'm trying to implement the Blueprint CSS grid in my website. As an example,
I'm trying to implement cascading controls using the following LINQ query expression. The idea
I am trying to implement a php script which will run on every call
I'm trying to implement comet in my application and, being inexperienced with JavaScript, I'm

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.