Study Notes

Study Notes

  • Source
  • WebDesign
  • Javascript

›Object Oriented Programming

Basic Javascript

  • Basic JavaScript Overview

ES6

  • ES6 Overview

Regular expression

  • Regular Expression Overview
  • Lookahead
  • Capture Group

Debugging

  • Debugging Overview

Object Oriented Programming

  • Object Oriented Programming Overview
  • Mixin
  • Closure
  • IIFE

Functional Programming

  • Functional Programming

Basic Algorithm Script

  • Reverse a String
  • Factorialize a Number
  • Find the Longest Word in a String
  • Return Largest Numbers In Arrays
  • Repeat a String
  • Truncate a String
  • Finders Keepers
  • Boo Who
  • Title Case a Sentence
  • Slice and Splice
  • Falsy Bouncer
  • javascript-algorithms-anddata-structures/basic-algorithm-scripting/where-do-i-belong
  • Mutations
  • Chunky Monkey

Intermediate Algorithm Script

  • Sum All Numbers in a Range
  • Diff Two Arrays
  • Seek and Destroy
  • Wherefor Art Thou
  • Spinal Tap Case
  • Search and Replace
  • DNA Pairing
  • Missing letters
  • Sorted Union
  • Convert HTML Entities
  • Sum All Odd Fibonacci Numbers
  • Smallest Common Multiple
  • Drop it
  • Steamroller
  • Binary Agents
  • Everything Be True
  • Arguments Optional
  • Make a Person
  • Map the Debris

IIFE

Immediately Invoked Function Expression (IIFE)

IIFE 是一个定义之后立即执行的函数,形式如下:

(function () {
    statements
})();

IIFE 有两个特点:

  • 外部无法访问 IIFE 中定义的变量。
  • IIFE 中定义的变量不会污染全局。

另外 IIFE 通常用于将相关的功能封装在一个对象或者模块 (module) 当中。这个也是 Nodejs module 的核心思想。

参考资料:

  • Medium: Mastering Immediately-invoked Function Expressions
  • MDN: IIFE
  • FreeCodeCamp: Understand the Immediately Invoked Function Expression (IIFE)
  • FreeCodeCamp: Use an IIFE to Create a Module
← ClosureFunctional Programming →
  • Immediately Invoked Function Expression (IIFE)
Copyright © 2019 罗惠东