zoukankan      html  css  js  c++  java
  • JavaScript Patterns 4.4 Self-Defining Functions

    If you create a new function and assign it to the same variable that already holds another function, you’re overwriting the old function with the new one.

    var scareMe = function () {
    
        alert("Boo!");
    
        scareMe = function () {
    
            alert("Double boo!");
    
        };
    
    };
    
    // using the self-defining function
    
    scareMe(); // Boo!
    
    scareMe(); // Double boo! 

    This pattern(lazy function definition) is useful when your function has some initial preparatory work to do and it needs to do it only once.

    A drawback of the pattern is that any properties you’ve previously added to the original function will be lost when it redefines itself.

    If the function is used with a different name, for example, assigned to a different variable or used as a method of an object, then the redefinition part will never happen and the original function body will be executed.

    // 1. adding a new property
    
    scareMe.property = "properly";
    // 2. assigning to a different name var prank = scareMe; // 3. using as a method var spooky = { boo: scareMe }; // calling with a new name prank(); // "Boo!" console.log(prank.property); // "properly" // calling as a method spooky.boo(); // "Boo!" console.log(spooky.boo.property); // "properly" // using the self-defined function scareMe(); // Double boo! console.log(scareMe.property); // undefined
  • 相关阅读:
    二叉树的镜像
    判断树B是不是树A的子结构
    LeetCode-21. Merge Two Sorted Lists
    LeetCode-Reverse Linked List I & II
    LeetCode-Permutations & Permutations II
    Linux常用命令
    Mac OS 快捷键
    Git 常用命令
    SVM参数寻优:grid search
    转载:Normal Equation证明及应用
  • 原文地址:https://www.cnblogs.com/haokaibo/p/Self-Defining-Functions.html
Copyright © 2011-2022 走看看