Remove and re-add a function javascript?

185 Views Asked by At

How would I re-add a function so far I've done addSplatter = undefined; now this works perfectly for removing the function/breaking it so it doesn't do the function anymore but how would I re-add the function I've tried

addSplatter = addSplatter;

but that doesn't work any idea's on how to get the function "re-added" ? Thanks for reading.

2

There are 2 best solutions below

1
On BEST ANSWER

Before making it undefined store the actual reference in a variable and use it to re-add it as a function.

var fnRef = addSplatter; // save function reference
addSplatter = undefined; // remove the function reference
addSplatter = fnRef; // make it a function again by assignment
0
On

What you are trying to do is to assign the variable value to the same variable.

This is syntactically and semantically correct in terms of the language but does not do what you want (it practically assigns the value stored in the variable (undefined) to itself). In order to do what you want, you need a second function referencing variable, as Amit Joki mentioned. This variable works as a "temporary storage" for the reference value of your function. You can then re-assign it to your old variable, as far as the temporary variable does not come out of scope and becomes destroyed, in a sense.