In Javascript, an IIFE stands for an Immediately-Invoked Function Expression: a function expression that gets invoked immediately after it is defined, such as (function(){ /* code */ })();
2
votes
1answer
44 views
Using an IIFE and passing in parameters, when should I do it? Javascript
I am building a little library for educational purposes!
Most sections of my library are made up of files that have a structure like so,
myLib.Something = (function() {
function Something() {
...
1
vote
1answer
33 views
JavaScript - new Object, code in moduls [duplicate]
I'm starting with JavaScript and studied the following code. What does the new operater do? Is not the canvas.js calling itself and creates a canvas?
main.js
(function(){
new display.Canvas();
...
1
vote
1answer
26 views
IIFE inside an IIFE. Issues? Performance?
My library is an an IIFE like this:
(function () {
win.global = global;
}());
inside this library I have my code organized into modules which also look like this:
var foo1 = (function () {
...
5
votes
2answers
650 views
Using Named Immediately-Invoked Function Expression (IIFE) instead of comments
What are the pros and cons of utilizing Named IIFEs within JS code to describe and group related code?
I've been using this "pattern" to lend structure to my more procedural code that gets executed ...
2
votes
2answers
57 views
How does a global “window” reference affect garbage collection in an iife?
function BigObject() {
var a = '';
for (var i = 0; i <= 0xFFFF; i++) a += String.fromCharCode(i);
return new String(a); // Turn this into an actual object
}
// iife 1 / window gets ...
0
votes
1answer
72 views
Is there an advantage of using a named function over an IIFE?
I see IIFE's all the time.
I see a series of statements that are left open, i.e, they are not encapsulated by brackets.
Why have I not seen a function followed by its invocation
// lib ...
0
votes
1answer
62 views
Why do Javascript “class” implementations overwrite the class name with an identically-named function declaration?
I'm studying Coffeescript's output to try and get a solid understanding of what's happening behind-the-scenes. When I declare a new class Person, a variable named Person is created containing an IIFE.
...
4
votes
3answers
68 views
Why is this grouping operator + function immediatly invoked
I'am studying the behaviour of Immediatly Invoked Function Expressions (IIFE) and while doing that I encounterd the following situation.
(function () {
document.write("bar");
})
(function () {
...
0
votes
2answers
283 views
Immediately-Invoked Function Expression (IIFE) vs not
I see a lot of code like:
var myApp ={};
(function() {
console.log("Hello");
this.var1 = "mark"; //"this" is global, because it runs immediately on load. Caller is global
...
0
votes
3answers
53 views
Is this ok to replace window with global in an IIFE?
Somehow something feels wrong or dirty by doing this, but it seems to be more semantic than using exports or window. Is this ok?
(function(global){
var foo,bar;
foo = 'Private Var';
global.bar ...
3
votes
1answer
123 views
Create a JS class: IIFE vs return prototype
Let's see two examples in which I'll try to explain what I want to understand.
var Car = function(){
// Init class
function Car() { };
// Private func/vars
var private = { color:'red' };
// ...
0
votes
1answer
45 views
IIFE does not immediately invoke
In the snippet below, the IIFE init() does not invoke. I can post any other code if needed.
This is for a drop down menu. I'm testing out $Frame.Support() so I'm pretty sure this has something to ...
3
votes
4answers
156 views
What is the “x = x || {}” technique in JavaScript - and how does it affect this IIFE?
First, a pseudo code example:
;(function(foo){
foo.init = function(baz) { ... }
foo.other = function() { ... }
return foo;
}(window.FOO = window.FOO || {}));
Called like so:
...
0
votes
2answers
136 views
Array initialization with self-invoking function
I'm trying to initialize an array with self-invoking function, assume for simplicity as an example, that initial values are squares of numbers from 0 to 4. The new keyword creates new object, so one ...
1
vote
1answer
163 views
Why Immediately-Invoked Function Expression (IIFE) are different from Self-Executing Anonymus Functions?
It is clear that in EcmaScript, functions when invoked create a new execution context. All variables and functions defined within a function may only be accessed inside that function scope. But when ...
2
votes
2answers
33 views
Function reference unavailable within IIFE?
If I run the following:
var fn = function(){}
(function(){
fn();
}());
It throws an "TypeError: undefined is not a function" in Chrome, and "TypeError: fn is not a function" in Firebug.
...
2
votes
5answers
200 views
How to concisely assign and immediately invoke a function variable?
The following is a method for defining an anonymous function within a closure, invoke the function, and forget it:
(function () { "do stuff"; })();
This is used to maintain a limited scope without ...
3
votes
1answer
473 views
Immediately-Invoked Function Expression (IIFE) In JavaScript - Passing jQuery
I've got the following code which I know is an IIFE. However, I've never been able to grasp what the (jQuery) and ($) is. I know it's got something to do with passing a reference of jQuery into the ...
0
votes
0answers
42 views
Javascript MVC with IIFE and potential dependency problems
I'm trying to create my own simple and small (observer) MVC example and trying to use IIFE to create privacy for my model and controller. As the controller requires the model object when it is invoked ...
0
votes
2answers
96 views
IIFE jquery ready
I am working on a web project that has a large amount of javascript and we started hitting namespace collisions because we were adding everything to "$.".
I read up about namespacing and found the ...
2
votes
2answers
64 views
'this' inside an IIFE | Same as local scope?
If I have an IIFE does this refer to the local scope?
(function(){
var $a;
$a = Su.$a
// this.$a = Su.$a; // can I replace with this
})();
I'm asking because I need Su.$a ...
5
votes
3answers
106 views
What is this line at the top of some Greasemonkey scripts?
Background:
I have a self-taught hobbyist level of understanding of C++, which has translated into a similar understanding of javascript. As an attempt to understand javascript better, I decided to ...
0
votes
1answer
56 views
change a custom binding handler so that it is assigned using an IIFE
I have a custom binding handler and want to modify it to IIFE. I have been reading on internet about IIFE but could not able how to change my custom handle into IIFE. So how can I change following ...
0
votes
4answers
336 views
understanding $ vs. jQuery in iife instead of $
I am trying to understand if there is any difference between:
(function($){
...
})(jQuery);
vs.
(function($){
...
})($);
Note the jQuery was replaced with a $. Is this ok? Is it not used ...
2
votes
3answers
257 views
Object.Prototype Methods and 'Use Strict' in an IIFE (Immediately-Invoked Function Expression)
The original Code:
'use strict';
function GitJs(config) {
var defaults = {
inheriting: false,
clientId: undefined,
accessToken: undefined,
baseUrl: ...
0
votes
2answers
239 views
How to split IIFE to fit into Java JVM/Rhino 64k bytecode limit
I would like to allow server-side scripting via Rhino with a syntax as close to jQuery as possible. Ideally I would simply like to use jQuery on the server.
Currenly, Rhino + Env.js + jQuery works, ...
2
votes
3answers
297 views
What's wrong with my Immediately Invoked Function Expression?
i've tried to do a very simple IIFE below,
<script type="text/javascript">
var obj = new Object;
(function(_obj) {_obj.prop = 'defined';})(obj);
if(typeof obj.prop === undefined)
...
15
votes
5answers
1k views
Advanced Javascript: Why is this function wrapped in parentheses? [duplicate]
Possible Duplicate:
What is this construct in javascript?
I came across this bit of Javascript code but have no idea what to make out of it. Why do I get "1" when I run this code? What is ...
17
votes
8answers
1k views
What is this construct in javascript?
I used to know what this meant but im struggling now...
Is this basically saying document.onload?
(function () {
})();
2
votes
2answers
314 views
IIFE scope issues
In the following construct:
(function(){
var x = function(){
alert('hi!');
}
var y = function(){
alert("hi again!");
}
this.show = function(){
...
1
vote
2answers
757 views
Using self-executing anonymous functions inside the revealing module pattern
Just wanted to know if it was a good JavaScript practice.
Let's say I have many Web pages that all call an initialization function "init()", would it be the right thing to use an IIFE inside my ...
12
votes
4answers
1k views
Dollar sign before self declaring anonymous function in JavaScript?
What is the difference between these two:
$(function () {
// do stuff
});
AND
(function () {
// do stuff
})();
41
votes
7answers
2k views
In JavaScript, what is the advantage of !function(){}() over (function () {})()? [duplicate]
Possible Duplicate:
What does the exclamation mark do before the function?
I've long used the following for self-executing, anonymous functions in JavaScript:
(function () { /* magic ...
8
votes
3answers
772 views
Defining and calling function in one step
Is there a way in Javascript to define a function and immediately call it, in a way that allows it to be reused?
I know you can do one-off anonymous functions:
(function(i) {
var product = i * ...
4
votes
4answers
1k views
Uncaught TypeError: Property 'fn' of object [object DOMWindow] is not a function
I know how to fix this error but does anyone tell me a comprehensive explanation of why this error occurs?
var fn = function () {
return fn();
}(); //uncaught TypeError: Property 'fn' of object ...
2
votes
1answer
285 views
What is the difference between assigning an IIFE's public members to a variable vs returning an object
I've been looking at a lot of JavaScript code lately and I've seen two different ways of using assigning "public" properties of IIFE's.
The first is to create a variable and assign that variable to a ...
3
votes
3answers
127 views
A Javascript function
Please explain the following way of writing a function in javascript functions :
(function (){
// some code
})()
I understand the fact that because of the trailing braces " () ", the function ...
7
votes
7answers
6k views
Javascript self executing function “is not a function”
I have:
var Init = (function() {
my js goes here
})();
And my js executes correctly when the page is loaded. I also have:
$('form :checkbox').change(function() {
Init();
});
But firebug ...
7
votes
3answers
1k views
Variable shadowing in JavaScript
Below we have an IIFE which (like any function) creates a local scope. Inside that scope there is a parseInt function. Now, since there already is a global function in the browser with that name, the ...
1
vote
5answers
3k views
JavaScript self-invoking function
I got this example from page 79 of a book called Object Oriented JavaScript by Stoyan Stefanov. Not really knowing what to do, the first time I ran this program (by hitting enter) it returned ...
14
votes
10answers
27k views
Javascript/jQuery uppercase first letter of variable
I have searched over the web can can't find anything to help me. I want to make the first letter of each word upper case within a variable.
So far i have tried:
toUpperCase();
And had no luck, as ...
2
votes
5answers
130 views
What is this unknown JavaScript syntax?
Is this jQuery code
(function(jQuery){
})(jQuery);
equivalent to
$(document).ready(function () {
});
If yes, what are the differences between the two? If not, what does the first do?
EDIT:
...
