Code Monkey home page Code Monkey logo

Comments (8)

eborden avatar eborden commented on May 4, 2024

https://github.com/getify/You-Dont-Know-JS/blob/master/scope%20&%20closures/ch2.md
Line 23

This example introduces an unnecessary level of indirection with declarations ordered as a, c, b.

function foo(a) {

    function bar(c) {
        console.log(a, b, c);
    }

    var b = a * 2;

    bar(b * 3);
}

foo(2); // 2, 4, 12

It could be more simply written like so:

function foo(a) {
    var b = a * 2;

    function bar(c) {
        console.log(a, b, c);
    }

    bar(b * 3);
}

foo(2); // 2, 4, 12

Yes hoisting could be considered an issue, but there is no need to worry about it here since it has yet to be introduced. This order allows the reader to follow the a, b, c declarations instead of a, c, b.

from you-dont-know-js.

eborden avatar eborden commented on May 4, 2024

https://github.com/getify/You-Dont-Know-JS/blob/master/scope%20&%20closures/ch2.md

Cheating with eval:
Is it worth mentioning Function constructor declarations here? They perform a flavor of eval and can produce global variables.

new Function('x = "global carnage!";');

from you-dont-know-js.

eborden avatar eborden commented on May 4, 2024

https://github.com/getify/You-Dont-Know-JS/blob/master/scope%20&%20closures/ch3.md

While discussing passing vars to IIFE's it might be nice to mention the undefined pattern since it is quite prevalent and likely to be encountered in the wild.

(function (global, undefined) {
    var a;
    if (a === undefined) {
        console.log('nothing here!');
    }
})(window);

from you-dont-know-js.

eborden avatar eborden commented on May 4, 2024

https://github.com/getify/You-Dont-Know-JS/blob/master/scope%20&%20closures/ch4.md
Line 92

I believe you intended this:

function foo() {
    var a;

    console.log(a); // undefined

    a = 2;
}

foo();

from you-dont-know-js.

eborden avatar eborden commented on May 4, 2024

https://github.com/eborden/You-Dont-Know-JS/blob/master/scope%20&%20closures/ch5.md

I'm not seeing the let/loop behavior that you are prescribing in the latest IE. This could be an implementation detail.

for(let i = 0; i < 4; i++){
    let j = i;
    setTimeout(function () {
        alert(i); // 4 4 4 4
        alert(j); // 0 1 2 3
    }, 10);
}

from you-dont-know-js.

eborden avatar eborden commented on May 4, 2024

Note, tested the previous example in the latest FF and had the same results.

from you-dont-know-js.

getify avatar getify commented on May 4, 2024

None of the browsers are conforming (yet) on the for (let x = ... behavior of binding per iteration. Here's a mozilla bug tracking their (dormant) attempt to come into alignment with the spec on this topic.

from you-dont-know-js.

getify avatar getify commented on May 4, 2024

Thanks for all the great feedback. I've finished posting revisions that take your comments into account.

from you-dont-know-js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.