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
  • 2 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

I have a class that has several member classes as attributes. The constructor of
I have two enums that cross reference each other. Each one has a constructor
I have a constructor (for an auto generated class) that has 255 paremeters. Using
In my game, I have a series of avatars, currently each avatar has a
I have an MVC controller that has a single constructor, I am using structure
I have a case class that has a few parameters for its constructor, and
I have a series of classes that tells the debug stream ( std::cout in
For my exception class i have a constructor that has multi arguments (...) which
In C++, I have an object A that has a constructor that accepts an
I have a constructor that looks like this (in c++): Interpreter::Interpreter() { tempDat ==

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.