Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to create a function which can be executed only once, in each time after the first it won't be executed. I know from c and c++ about static variables that can do the work but I would like is there more elegant way?

share|improve this question

6 Answers

up vote 4 down vote accepted

If by "won't be executed" you mean "will do nothing when called more than once", you can create a closure:

var something = (function() {
    var executed = false;
    return function () {
        if (!executed) {
            executed = true;
            // do something
        }
    };
})();
share|improve this answer
what is the deference between closure and global veritable ? – Vlad Ioffe Oct 3 '12 at 17:26
@VladIoffe - With a global variable, other code could reset the value of the "executed" flag (whatever name you pick for it). With a closure, other code has no way to do that, either accidentally or deliberately. – Ted Hopp Oct 3 '12 at 17:31

Replace it with a reusable NOOP (no operation) function.

  // this function does nothing
function noop() {};

function foo() {
    // do your thing

    foo = noop; // swap the functions
}

function bar() {
    // do your thing

    bar = noop; // swap the functions
}
share|improve this answer
Why the down vote? What's the problem? This prevents the need to create a new flag for every function. – I Hate Lazy Oct 3 '12 at 17:25
There are more elegant ways of achieving the intended functionality; check asawyer or hakra responses – fableal Oct 3 '12 at 17:27
@fableal: How is this inelegant? Again, it is very clean, requires less code, and doesn't require a new variable for every function that should be disabled. A "noop" is designed exactly for this sort of situation. – I Hate Lazy Oct 3 '12 at 17:28
@fableal: I just looked at hakra's answer. So make a new closure and variable every time you need to do this to a new function? You have a very funny definition of "elegant". – I Hate Lazy Oct 3 '12 at 17:30
Accordingly to asawyer's response, you only needed to do _.once(foo) or _.once(bar), and the functions themselves don't need to be aware of being ran only once (no need for the noop and no need for the * = noop). – fableal Oct 3 '12 at 17:31
show 2 more comments

UnderscoreJs has a function that does that, underscorejs.org/#once

  // Returns a function that will be executed at most one time, no matter how
  // often you call it. Useful for lazy initialization.
  _.once = function(func) {
    var ran = false, memo;
    return function() {
      if (ran) return memo;
      ran = true;
      memo = func.apply(this, arguments);
      func = null;
      return memo;
    };
  };
share|improve this answer
var quit = false;

function something() {
    if(quit) {
       return;
    } 
    quit = true;
    ... other code....
}
share|improve this answer
2  
What about a closure? No need for the global .... – fableal Oct 3 '12 at 17:19
Sure, that would work too. – Diodeus Oct 3 '12 at 17:21
what is closure? – Vlad Ioffe Oct 3 '12 at 17:22
See Ted Hopp's response. It's a way of scoping function-level variables. – Diodeus Oct 3 '12 at 17:23
show 1 more comment

try this

var fun = (function() {
  var called = false;
  return function() {
    if (!called) {
      console.log("I  called");
      called = true;
    }
  }
})()
share|improve this answer

You could simply have the function "remove itself"

​function Once(){
    console.log("run");

    Once = undefined;
}

Once();  // run
Once();  // Uncaught TypeError: undefined is not a function 

But this may not be the best answer if you don't want to be swallowing errors.

You could also do this:

function Once(){
    console.log("run");

    Once = function(){};
}

Once(); // run
Once(); // nothing happens

I need it to work like smart pointer, if there no elements from type A it can be executed, if there is one or more A elements the function can't be executed.

function Conditional(){
    if (!<no elements from type A>) return;

    // do stuff
}
share|improve this answer
I need it to work like smart pointer, if there no elements from type A it can be executed, if there is one or more A elements the function can't be executed. – Vlad Ioffe Oct 3 '12 at 17:31
@VladIoffe That's not what you asked. – Shmiddty Oct 3 '12 at 17:32
I know it poped up – Vlad Ioffe Oct 3 '12 at 18:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.