diff options
author | Adam Bard <github@adambard.com> | 2013-08-05 08:38:47 -0700 |
---|---|---|
committer | Adam Bard <github@adambard.com> | 2013-08-05 08:38:47 -0700 |
commit | 8b0cd2d599bfc1761a7341e59309c482cee535f0 (patch) | |
tree | 82cd946bb29d5bc71ca7ac94cb4f4452af032081 | |
parent | c10f6a688865b667aa2936d7bd748122560f5c91 (diff) | |
parent | f5023cc9b35be5d1986a76ce1d6f44979a766afb (diff) |
Merge pull request #161 from greybird/master
fix IEF in javascript
-rw-r--r-- | javascript.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/javascript.html.markdown b/javascript.html.markdown index 9cc7617d..cc279b9a 100644 --- a/javascript.html.markdown +++ b/javascript.html.markdown @@ -241,7 +241,7 @@ i // = 5 - not undefined as you'd expect in a block-scoped language // This has led to a common pattern of "immediately-executing anonymous // functions", which prevent temporary variables from leaking into the global // scope. -function(){ +(function(){ var temporary = 5 // We can access the global scope by assiging to the 'global object', which // in a web browser is always 'window'. The global object may have a @@ -249,7 +249,7 @@ function(){ window.permanent = 10 // Or, as previously mentioned, we can just leave the var keyword off. permanent2 = 15 -}() +})() temporary // raises ReferenceError permanent // = 10 permanent2 // = 15 |