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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T17:32:58+00:00 2026-06-13T17:32:58+00:00

Take a very simple jQuery plugin boilerplate: var _defaults = { foo: false };

  • 0

Take a very simple jQuery plugin boilerplate:

var _defaults = {
  foo: false
};

function Plugin( settings ) {
  this.opts = $.extend( {}, _defaults, settings );
}

I have a doSomething method that can only run successfully if the option foo is set to true and there are other methods that may doSomething() at a certain point so I had a dilemma on where to place my if statement. First I thought:

Plugin.prototype = {
  doSomething: function() {
    // Do something that depends on foo
  },
  method: function() {
    ...
    if ( this.opts.foo ) { this.doSomething() }
  },
  method: function() {
    ...
    if ( this.opts.foo ) { this.doSomething() }
  }
};

But then for the sake of DRYness I decided to do this:

Plugin.prototype = {
  doSomething: function() {
    if ( this.opts.foo ) {
      // Do something that depends on foo
    }
  },
  method: function() {
    ...
    this.doSomething();
  },
  method: function() {
    ...
    this.doSomething();
  }
};

So now methods that may utilize doSomething run the function regardless of it being empty if foo is false.

So my question is, what is a better approach? The second one is shorter but it has to look-up the method everytime even if it’s not necessary just to perhaps run an empty function. So is the first one more efficient?

Oh, and yes, I know probably this is micro-optimization and folks will say don’t worry about it but I’m just curious…

  • 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-13T17:32:59+00:00Added an answer on June 13, 2026 at 5:32 pm

    Calling a function will be more inefficient than your first approach.

    Have a look at the tests here:
    http://geek.michaelgrace.org/2011/02/javascript-performance-hit-calling-function-vs-inline/

    They confirm that function calls can be up to 50% slower on some browsers. You can test out your own.

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

Sidebar

Related Questions

I have this very simple br2nl function that I use to take a string
I have a very basic question. Lets take this snippet: #include <stdio.h> void foo(void)
I'm sure this is a very simple question but please take a look at
Take a very simple case as an example, say I have this URL: http://www.example.com/65167.html
Take this very simple form for example: class SearchForm(Form): q = forms.CharField(label='search') This gets
I've written this very simple function to replace a file extension using LINQ in
Take a very simple example, mfrow=c(1,3) ; each figure is a different histogram; how
Ok, I'm very simply trying to take this example... http://jsfiddle.net/shanabus/HGF59/ and put it on
I've written a fairly simple script that will take elements (in this case, <p>
I am very new to Javascript and Jquery, so my apologies for this beginner's

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.