Skip to content

Commit 7658226

Browse files
authored
Replace archive link with actual link to the blog post (mdn#40505)
Ideally, archive links should be used only if the original URL/domain does not work anymore, or has changed content that no longer matches the intent here. That is not the case for this blog post, hence replacing the archive link with actual URL feels like the right thing to do.
1 parent 462531d commit 7658226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

files/en-us/glossary/iife/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ page-type: glossary-definition
55
sidebar: glossarysidebar
66
---
77

8-
An **IIFE** (Immediately Invoked Function Expression) is an idiom in which a {{glossary("JavaScript")}} {{glossary("function")}} runs as soon as it is defined. It is also known as a _self-executing anonymous function_. The name IIFE is promoted by Ben Alman in [his blog](https://web.archive.org/web/20171201033208/http://benalman.com/news/2010/11/immediately-invoked-function-expression/#iife).
8+
An **IIFE** (Immediately Invoked Function Expression) is an idiom in which a {{glossary("JavaScript")}} {{glossary("function")}} runs as soon as it is defined. It is also known as a _self-executing anonymous function_. The name IIFE is promoted by Ben Alman in [his blog](http://benalman.com/news/2010/11/immediately-invoked-function-expression/#iife).
99

1010
```js
1111
// standard IIFE

0 commit comments

Comments
 (0)