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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T21:51:35+00:00 2026-05-13T21:51:35+00:00

I have a constructor that has a series of classes and functions within it

  • 0

I have a constructor that has a series of classes and functions within it – in each function I check if the param is set to show the error and output if so. Like so using an inline if. The issue and question is short of keeping two versions is this approach not wise in that each IF has to be evaluated thus adding to the time it takes to perform?

debugSlide =  (bag.debug==1)? console.log("item id =" + bag.itemId) : 0;

How do you do this? Any pointers on where I can find tips on this? Thanks in advance!

  • 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-13T21:51:36+00:00Added an answer on May 13, 2026 at 9:51 pm

    This is exactly the type of problem that polymorphism is good at.

    var SomeObject = function( initialDebugger )
    { 
      this.test = function()
      {
        alert( 'Test!' );
        this.debugger.log( 'Executing SomeObject.test()' );
      }
    
      this.setDebugger = function( newDebugger )
      {
        this.debugger = newDebugger;
      }
    
      if ( 'undefined' == typeof initialDebugger )
      {
        initialDebugger = new SilentDebugger();
      }
      this.setDebugger( initialDebugger );
    }
    
    var SilentDebugger = function()
    {
      this.log = function(){}          
    }
    
    var FirebugDebugger = function()
    {
      this.log = function()
      {
        console.log.apply( window, arguments );
      }
    }
    
    var sample = new SomeObject();
    
    sample.test();
    sample.setDebugger( new FirebugDebugger() );
    sample.test();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

For my exception class i have a constructor that has multi arguments (...) which
Some of my classes have final fields that are populated from the constructor as
I have a class which has a constructor that takes a const char* .
Is it good practice to have a class constructor that uses default parameters, or
I have two classes, Foo and Bar, that have constructors like this: class Foo
I have two constructor : function clsUsagerEmailUserName($nickName, $email) { $this->nickName = $nickName; $this->email =
What I would like to do is have a static factory function that you
I have an attribute that I have written that has a dependency on the
We have a .Net object that has a static delegate (a data access strategy)
I have an app that has a lot of views including tableViews but one

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.