Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Explaining JavaScript and this to people.

Explaining JavaScript and this to people.

Scheduled Pinned Locked Moved The Lounge
csharpc++javajavascriptphp
54 Posts 14 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K KarstenK

    Javascript has become a powerful language. With this comes responsibility :~

    Press F1 for help or google it. Greetings from Germany

    J Offline
    J Offline
    Jeremy Falcon
    wrote on last edited by
    #17

    Wisdom you speak. Wisdom you speak...

    Jeremy Falcon

    1 Reply Last reply
    0
    • J Jorgen Andersson

      Now it's 40 000 001

      Wrong is evil and must be defeated. - Jeff Ello

      J Offline
      J Offline
      Jeremy Falcon
      wrote on last edited by
      #18

      :-D

      Jeremy Falcon

      1 Reply Last reply
      0
      • M Marc Clifton

        I think Javascript is such a PITA to learn because: 1) my bias to what I expect. I experience this with Python as well. Anything from differently named functions for string manipulation to the whole abortion called the DOM. 2) too many strings. $("#foo") 3) too many things hard to type. Shift-$. Shift paren. Shift quote. Shift pound. Unshift. The rest of the identifier. Shift quote. Shift close parent. Unshift. Dot. etc... 4) string function name or function or property? $("#foo").val(); vs. event.args.innerText vs. (jqxWidgets example) $("#menu").jqxMenu("close"); 5) Standards hell: For example, single quote or double quote: $("#menu").jqxMenu('close'); 6) Insane (or is that inane) document traversal: var parentItemText = $($($("#projectTree1").jqxTree('getSelectedItem').parentElement).children("div")[1]).text(); 7) Closure madness (ok, once you get familiar with the syntax, yeah, it makes sense):

        myLayout.registerComponent('Output', function (container, componentState) {
        container.getElement().html($("#buildOutputContainer").html().replace("buildOutput", "buildOutput1"));
        container.on("resize", (function (c) {
        var ct = c;
        return function () {
        $("#buildOutput1").jqxTextArea({ width: ct.width + "px", height: ct.height + "px" });
        };
        })(container));
        });

        1. div hell. OK, not related to Javascript 9) framework hell. Too many, too complicated, too annoying, too idiocentric. 10) Untestable. Except by trying it manually. Yeah, I've tried a variety of test frameworks, even tried writing my own. They all suck. Should I go on? These are all barriers to: 1) Really grocking Javascript. For example, I just discovered this cool way to eliminate the stupidity of all these strings for acquiring elements by ID or "class" name:

        id = new Proxy({},
        {
        get: function (target, prop) {
        return function () { return $("#" + prop); };
        }
        });

        Usage: id.menubar().jqxMenu({ width: 600, height: 30 }); instead of this crap: $("#menubar").jqxMenu({ width: 600, height: 30 }); Should I do that or not? Performance penalty vs. readability? Is it more readable? Will it confuse someone who has to maintain the code. Versus, say, a server-side replacement like !menubar.jqxMenu... Yet again another kludge that requires that you know something totally outside of pure Javascript to under

        J Offline
        J Offline
        jsc42
        wrote on last edited by
        #19

        I enjoyed it! Virtually all of your complaints are about jQuery. I don't use jQuery :)

        N 1 Reply Last reply
        0
        • J Jeremy Falcon

          In all fairness, I think I know why JavaScript can be such a pain to learn. It seems mainly due to piss-poor over complicated explanations online using different terminology than the rest of the world. I just came across another site doing just that. Since someone needs to stand up for JavaScript on CP and right some wrongs I submit to y'all a proper explanation of what was trying to be explained on this site that shall remain nameless. One of the age old confusions with JavaScript has been dealing with the this keyword. It's actually pretty simple to understand, provided you find someone who isn't trying to act smart by over complicating crap. If you've ever found yourself wondering why things aren't working the way you'd expect from a different language, well here's the real explanation of it without the hype. Given this code...

          // in C++, C#, Java, PHP, etc. "this" is seen as an instance of the current object
          // same thing in JavaScript, except not everything is an object with it

          var fruit = 'Orange';
          window.fruit = 'Apple';

          // unlike other languages, in JavaScript we can invoke this in more ways than one
          function explainThis () {
          alert(fruit + ' ' + this.fruit);
          }

          // the window object is global by default, so calling explainThis as a function in global scope
          // means that when "this" is used in it, it will point to the current object, which is window

          explainThis(); // shows Orange Apple

          // if we treat explainThis like an object instead, then the current object in scope of the alert
          // becomes the function itself since it's now an object calling the alert instead of a function

          var stuff = new explainThis(); // shows Orange undefined

          In JavaScript this is simply the context of the current object. Calling something as a function doesn't create a new object in scope, but newing that sucker up does. That's all there is to it. Forget about the kiddies online trying to make this sound more complicated than it is. If this was bugging you, then I hope it helps. I just felt the need to show JavaScript some love since it really is a nifty language. You may now return back to your normal lounging.

          Jeremy Falcon

          G Offline
          G Offline
          GuyThiebaut
          wrote on last edited by
          #20

          I am currently writing a road traffic simulator in javascript and both at work and in this project the one thing that makes javascript difficult is scope. Basically the manner in which scope is implemented javascript makes it that much more difficult than it needs to be. That said I have found that programming in javascritpt has made me a better developer because there are so many ways you can do things badly in javascript.

          “That which can be asserted without evidence, can be dismissed without evidence.”

          ― Christopher Hitchens

          J G 2 Replies Last reply
          0
          • J Jeremy Falcon

            In all fairness, I think I know why JavaScript can be such a pain to learn. It seems mainly due to piss-poor over complicated explanations online using different terminology than the rest of the world. I just came across another site doing just that. Since someone needs to stand up for JavaScript on CP and right some wrongs I submit to y'all a proper explanation of what was trying to be explained on this site that shall remain nameless. One of the age old confusions with JavaScript has been dealing with the this keyword. It's actually pretty simple to understand, provided you find someone who isn't trying to act smart by over complicating crap. If you've ever found yourself wondering why things aren't working the way you'd expect from a different language, well here's the real explanation of it without the hype. Given this code...

            // in C++, C#, Java, PHP, etc. "this" is seen as an instance of the current object
            // same thing in JavaScript, except not everything is an object with it

            var fruit = 'Orange';
            window.fruit = 'Apple';

            // unlike other languages, in JavaScript we can invoke this in more ways than one
            function explainThis () {
            alert(fruit + ' ' + this.fruit);
            }

            // the window object is global by default, so calling explainThis as a function in global scope
            // means that when "this" is used in it, it will point to the current object, which is window

            explainThis(); // shows Orange Apple

            // if we treat explainThis like an object instead, then the current object in scope of the alert
            // becomes the function itself since it's now an object calling the alert instead of a function

            var stuff = new explainThis(); // shows Orange undefined

            In JavaScript this is simply the context of the current object. Calling something as a function doesn't create a new object in scope, but newing that sucker up does. That's all there is to it. Forget about the kiddies online trying to make this sound more complicated than it is. If this was bugging you, then I hope it helps. I just felt the need to show JavaScript some love since it really is a nifty language. You may now return back to your normal lounging.

            Jeremy Falcon

            L Offline
            L Offline
            Lost User
            wrote on last edited by
            #21

            I agree with you it is not such a bad language as people try to picture it.

            J 1 Reply Last reply
            0
            • J jsc42

              I enjoyed it! Virtually all of your complaints are about jQuery. I don't use jQuery :)

              N Offline
              N Offline
              Nathan Minier
              wrote on last edited by
              #22

              I got a chuckle out of that as well.

              "There are three kinds of lies: lies, damned lies and statistics." - Benjamin Disraeli

              1 Reply Last reply
              0
              • J Jeremy Falcon

                In all fairness, I think I know why JavaScript can be such a pain to learn. It seems mainly due to piss-poor over complicated explanations online using different terminology than the rest of the world. I just came across another site doing just that. Since someone needs to stand up for JavaScript on CP and right some wrongs I submit to y'all a proper explanation of what was trying to be explained on this site that shall remain nameless. One of the age old confusions with JavaScript has been dealing with the this keyword. It's actually pretty simple to understand, provided you find someone who isn't trying to act smart by over complicating crap. If you've ever found yourself wondering why things aren't working the way you'd expect from a different language, well here's the real explanation of it without the hype. Given this code...

                // in C++, C#, Java, PHP, etc. "this" is seen as an instance of the current object
                // same thing in JavaScript, except not everything is an object with it

                var fruit = 'Orange';
                window.fruit = 'Apple';

                // unlike other languages, in JavaScript we can invoke this in more ways than one
                function explainThis () {
                alert(fruit + ' ' + this.fruit);
                }

                // the window object is global by default, so calling explainThis as a function in global scope
                // means that when "this" is used in it, it will point to the current object, which is window

                explainThis(); // shows Orange Apple

                // if we treat explainThis like an object instead, then the current object in scope of the alert
                // becomes the function itself since it's now an object calling the alert instead of a function

                var stuff = new explainThis(); // shows Orange undefined

                In JavaScript this is simply the context of the current object. Calling something as a function doesn't create a new object in scope, but newing that sucker up does. That's all there is to it. Forget about the kiddies online trying to make this sound more complicated than it is. If this was bugging you, then I hope it helps. I just felt the need to show JavaScript some love since it really is a nifty language. You may now return back to your normal lounging.

                Jeremy Falcon

                N Offline
                N Offline
                Nathan Minier
                wrote on last edited by
                #23

                I think you missed the point that it's fashionable to rip on JS because you "should" be using TypeScript.

                #hipstercode

                "There are three kinds of lies: lies, damned lies and statistics." - Benjamin Disraeli

                J 1 Reply Last reply
                0
                • J Jeremy Falcon

                  Marc, that's a lot of stuff to go over man. At lot of these points are mainly due to design concerns and just being old and resistant to change. ;P Forgive me, but I'll have to skim over some of this stuff, but will address some points

                  Marc Clifton wrote:

                  1. my bias to what I expect. I experience this with Python as well. Anything from differently named functions for string manipulation to the whole abortion called the DOM.

                  It's an object representation of what's displayed. I'm not sure how it's an abortion. About the only thing I can see with that is old skool compatiblity issues. You can blame Microsoft and Mozilla for that. They didn't give two flips about each other. But those days are gone for the most part. Life is better.

                  Marc Clifton wrote:

                  1. too many strings. $("#foo")

                  Marc, we're professionals man. Come on.

                  Marc Clifton wrote:

                  1. Standards hell: For example, single quote or double quote: $("#menu").jqxMenu('close');

                  Most web languages support both. Can't blame JavaScript for that.

                  Marc Clifton wrote:

                  var parentItemText = $($($("#projectTree1").jqxTree('getSelectedItem').parentElement).children("div")[1]).text();

                  Clearly, you're looking at code written by a 5 year old that doesn't know anything about CSS selectors or jQuery.

                  Marc Clifton wrote:

                  Should I do that or not? Performance penalty vs. readability? Is it more readable? Will it confuse someone who has to maintain the code.

                  Unless you're willing to refactor everything, then yeah that's nifty. The problem here is the design. Back in the olden days, JavaScript was tightly coupled with the DOM. Those days have changed man. I'm not saying it doesn't exist, but it's not nearly has bad as the olden days. Dealing with JScript or VBScript as no different though. It's just the way web dev was for years, and it's not really that much different in concept than XAML and people using ViewModels poorly.

                  Marc Clifton wrote:

                  Why do I do this? So I can have a nice function named "getProjectId" that tells me exactly what is going on, without passing in a string and without writing the abortion that looks like this:

                  Oh Marc, you're having fun with this aren't you? :rolleyes:

                  R Offline
                  R Offline
                  Rob Grainger
                  wrote on last edited by
                  #24

                  Personally, I find having two acceptable string delimiters useful. If you're building a string that needs to contain double-quotes, you can use single-quotes to delimit it, and vice versa - avoiding having to use an escape sequence in many cases, and improving readability. My gripes with JavaScript are many - but this isn't one of them. Douglas Crockford enumerated them well: Bad Parts: Appendix B - JavaScript: The Good Parts - O'Reilly Media[^] Some of these are remedied in ES6, as detailed here (5 JavaScript “Bad” Parts That Are Fixed In ES6 – freeCodeCamp[^]), but not all mainstream browsers support all of these yet.

                  "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

                  J 1 Reply Last reply
                  0
                  • J Jeremy Falcon

                    Chris Maunder wrote:

                    Now explain closures and you'll have everyone halfway there.

                    You'll hear 40 million different definitions online about that. And most of them try to sound smart, but put simply it's a function within a function. People will try to tack on crap with scoping etc. to that definition when "explaining" it, but that's irrelevant to the core concept of it IMO.

                    Chris Maunder wrote:

                    And of course the obligatory WAT video whenever Javascript weirdness is raised.

                    Ok, that dude is hilarious. I have no idea why the object stuff in JavaScript turned out the way it did, but I can at least explain the 'wat' + 1 thing. The plus sign is used for string concatenation and arithmetic. The minus sign isn't. So in the former example, the interpreter assumes you're trying to concatenate using the most compatible types between the two operands, which is usually a string. The minus sign only only used for arithmetic and so it's NaN.

                    Jeremy Falcon

                    R Offline
                    R Offline
                    Rob Grainger
                    wrote on last edited by
                    #25

                    Jeremy Falcon wrote:

                    I have no idea why the object stuff in JavaScript turned out the way it did

                    . Because Mozilla were insane enough to give a dev just 2 weeks to write a language. It's amazing it works at all.

                    "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

                    J 1 Reply Last reply
                    0
                    • M Marc Clifton

                      I think Javascript is such a PITA to learn because: 1) my bias to what I expect. I experience this with Python as well. Anything from differently named functions for string manipulation to the whole abortion called the DOM. 2) too many strings. $("#foo") 3) too many things hard to type. Shift-$. Shift paren. Shift quote. Shift pound. Unshift. The rest of the identifier. Shift quote. Shift close parent. Unshift. Dot. etc... 4) string function name or function or property? $("#foo").val(); vs. event.args.innerText vs. (jqxWidgets example) $("#menu").jqxMenu("close"); 5) Standards hell: For example, single quote or double quote: $("#menu").jqxMenu('close'); 6) Insane (or is that inane) document traversal: var parentItemText = $($($("#projectTree1").jqxTree('getSelectedItem').parentElement).children("div")[1]).text(); 7) Closure madness (ok, once you get familiar with the syntax, yeah, it makes sense):

                      myLayout.registerComponent('Output', function (container, componentState) {
                      container.getElement().html($("#buildOutputContainer").html().replace("buildOutput", "buildOutput1"));
                      container.on("resize", (function (c) {
                      var ct = c;
                      return function () {
                      $("#buildOutput1").jqxTextArea({ width: ct.width + "px", height: ct.height + "px" });
                      };
                      })(container));
                      });

                      1. div hell. OK, not related to Javascript 9) framework hell. Too many, too complicated, too annoying, too idiocentric. 10) Untestable. Except by trying it manually. Yeah, I've tried a variety of test frameworks, even tried writing my own. They all suck. Should I go on? These are all barriers to: 1) Really grocking Javascript. For example, I just discovered this cool way to eliminate the stupidity of all these strings for acquiring elements by ID or "class" name:

                      id = new Proxy({},
                      {
                      get: function (target, prop) {
                      return function () { return $("#" + prop); };
                      }
                      });

                      Usage: id.menubar().jqxMenu({ width: 600, height: 30 }); instead of this crap: $("#menubar").jqxMenu({ width: 600, height: 30 }); Should I do that or not? Performance penalty vs. readability? Is it more readable? Will it confuse someone who has to maintain the code. Versus, say, a server-side replacement like !menubar.jqxMenu... Yet again another kludge that requires that you know something totally outside of pure Javascript to under

                      G Offline
                      G Offline
                      grolarbear
                      wrote on last edited by
                      #26

                      I think you're conflating JS with web programming. Lets not forget NodeJS baby! 1. While the DOM technically is part of JS, it's only in the context of web programming. 2-7. These were all JQuery, which is not the same as Javascript. I know I speak on behalf of many a JS purist when I say JQuery can die in a hole. 8. Well you already answerd this one. 9. Agreed, frameworks are dumb. But blaming JS for frameworks is like blaming Tim Berners Lee for 4Chan. 10. I don't really have an argument for this one. Obviously I use JS but I've been doing it for so long that *humble brag* I generally don't write code that doesn't work. My IDE tells me when I make a typo though... TBH it seems to me that you have more of a problem with Jquery. And if this is the case, I think we are in furious agreement.

                      M 1 Reply Last reply
                      0
                      • J Jeremy Falcon

                        In all fairness, I think I know why JavaScript can be such a pain to learn. It seems mainly due to piss-poor over complicated explanations online using different terminology than the rest of the world. I just came across another site doing just that. Since someone needs to stand up for JavaScript on CP and right some wrongs I submit to y'all a proper explanation of what was trying to be explained on this site that shall remain nameless. One of the age old confusions with JavaScript has been dealing with the this keyword. It's actually pretty simple to understand, provided you find someone who isn't trying to act smart by over complicating crap. If you've ever found yourself wondering why things aren't working the way you'd expect from a different language, well here's the real explanation of it without the hype. Given this code...

                        // in C++, C#, Java, PHP, etc. "this" is seen as an instance of the current object
                        // same thing in JavaScript, except not everything is an object with it

                        var fruit = 'Orange';
                        window.fruit = 'Apple';

                        // unlike other languages, in JavaScript we can invoke this in more ways than one
                        function explainThis () {
                        alert(fruit + ' ' + this.fruit);
                        }

                        // the window object is global by default, so calling explainThis as a function in global scope
                        // means that when "this" is used in it, it will point to the current object, which is window

                        explainThis(); // shows Orange Apple

                        // if we treat explainThis like an object instead, then the current object in scope of the alert
                        // becomes the function itself since it's now an object calling the alert instead of a function

                        var stuff = new explainThis(); // shows Orange undefined

                        In JavaScript this is simply the context of the current object. Calling something as a function doesn't create a new object in scope, but newing that sucker up does. That's all there is to it. Forget about the kiddies online trying to make this sound more complicated than it is. If this was bugging you, then I hope it helps. I just felt the need to show JavaScript some love since it really is a nifty language. You may now return back to your normal lounging.

                        Jeremy Falcon

                        T Offline
                        T Offline
                        Tomz_KV
                        wrote on last edited by
                        #27

                        Tried the code in a new HTML page using Visual Studio 2017 and Google Chrome. The first alert showed "Apple Apple" and the second "Apple undefined". "Orange" did not show up.

                        TOMZ_KV

                        J 2 Replies Last reply
                        0
                        • G GuyThiebaut

                          I am currently writing a road traffic simulator in javascript and both at work and in this project the one thing that makes javascript difficult is scope. Basically the manner in which scope is implemented javascript makes it that much more difficult than it needs to be. That said I have found that programming in javascritpt has made me a better developer because there are so many ways you can do things badly in javascript.

                          “That which can be asserted without evidence, can be dismissed without evidence.”

                          ― Christopher Hitchens

                          J Offline
                          J Offline
                          Jeremy Falcon
                          wrote on last edited by
                          #28

                          :laugh: I know what you mean. I do find the more I use JavaScript though the more I like it. It's just where the web is at, so getting can only help ya know.

                          Jeremy Falcon

                          1 Reply Last reply
                          0
                          • L Lost User

                            I agree with you it is not such a bad language as people try to picture it.

                            J Offline
                            J Offline
                            Jeremy Falcon
                            wrote on last edited by
                            #29

                            Thanks man. I totally agree. It's just different is all.

                            Jeremy Falcon

                            L 1 Reply Last reply
                            0
                            • N Nathan Minier

                              I think you missed the point that it's fashionable to rip on JS because you "should" be using TypeScript.

                              #hipstercode

                              "There are three kinds of lies: lies, damned lies and statistics." - Benjamin Disraeli

                              J Offline
                              J Offline
                              Jeremy Falcon
                              wrote on last edited by
                              #30

                              Probably, but can't go and be a rebel and all and start using that now can we? :laugh:

                              Jeremy Falcon

                              1 Reply Last reply
                              0
                              • J Jeremy Falcon

                                In all fairness, I think I know why JavaScript can be such a pain to learn. It seems mainly due to piss-poor over complicated explanations online using different terminology than the rest of the world. I just came across another site doing just that. Since someone needs to stand up for JavaScript on CP and right some wrongs I submit to y'all a proper explanation of what was trying to be explained on this site that shall remain nameless. One of the age old confusions with JavaScript has been dealing with the this keyword. It's actually pretty simple to understand, provided you find someone who isn't trying to act smart by over complicating crap. If you've ever found yourself wondering why things aren't working the way you'd expect from a different language, well here's the real explanation of it without the hype. Given this code...

                                // in C++, C#, Java, PHP, etc. "this" is seen as an instance of the current object
                                // same thing in JavaScript, except not everything is an object with it

                                var fruit = 'Orange';
                                window.fruit = 'Apple';

                                // unlike other languages, in JavaScript we can invoke this in more ways than one
                                function explainThis () {
                                alert(fruit + ' ' + this.fruit);
                                }

                                // the window object is global by default, so calling explainThis as a function in global scope
                                // means that when "this" is used in it, it will point to the current object, which is window

                                explainThis(); // shows Orange Apple

                                // if we treat explainThis like an object instead, then the current object in scope of the alert
                                // becomes the function itself since it's now an object calling the alert instead of a function

                                var stuff = new explainThis(); // shows Orange undefined

                                In JavaScript this is simply the context of the current object. Calling something as a function doesn't create a new object in scope, but newing that sucker up does. That's all there is to it. Forget about the kiddies online trying to make this sound more complicated than it is. If this was bugging you, then I hope it helps. I just felt the need to show JavaScript some love since it really is a nifty language. You may now return back to your normal lounging.

                                Jeremy Falcon

                                K Offline
                                K Offline
                                Kirk 10389821
                                wrote on last edited by
                                #31

                                And then the MORON who declares a variable like var window; which in one browser HIDES the window object, in the other it is ignored (a few years back). And your code works in once place, and not the other! OMFG... Otherwise, I actually LIKE javaScript as a teachable language. Just not the environment it lives!

                                J 1 Reply Last reply
                                0
                                • T Tomz_KV

                                  Tried the code in a new HTML page using Visual Studio 2017 and Google Chrome. The first alert showed "Apple Apple" and the second "Apple undefined". "Orange" did not show up.

                                  TOMZ_KV

                                  J Offline
                                  J Offline
                                  Jeremy Falcon
                                  wrote on last edited by
                                  #32

                                  Double check how the project is set up then. Here's a fiddle of it... JSFiddle[^]

                                  Jeremy Falcon

                                  T 1 Reply Last reply
                                  0
                                  • R Rob Grainger

                                    Personally, I find having two acceptable string delimiters useful. If you're building a string that needs to contain double-quotes, you can use single-quotes to delimit it, and vice versa - avoiding having to use an escape sequence in many cases, and improving readability. My gripes with JavaScript are many - but this isn't one of them. Douglas Crockford enumerated them well: Bad Parts: Appendix B - JavaScript: The Good Parts - O'Reilly Media[^] Some of these are remedied in ES6, as detailed here (5 JavaScript “Bad” Parts That Are Fixed In ES6 – freeCodeCamp[^]), but not all mainstream browsers support all of these yet.

                                    "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

                                    J Offline
                                    J Offline
                                    Jeremy Falcon
                                    wrote on last edited by
                                    #33

                                    I totally agree with you there man.

                                    Jeremy Falcon

                                    1 Reply Last reply
                                    0
                                    • R Rob Grainger

                                      Jeremy Falcon wrote:

                                      I have no idea why the object stuff in JavaScript turned out the way it did

                                      . Because Mozilla were insane enough to give a dev just 2 weeks to write a language. It's amazing it works at all.

                                      "If you don't fail at least 90 percent of the time, you're not aiming high enough." Alan Kay.

                                      J Offline
                                      J Offline
                                      Jeremy Falcon
                                      wrote on last edited by
                                      #34

                                      :-D You have a good point.

                                      Jeremy Falcon

                                      1 Reply Last reply
                                      0
                                      • J Jeremy Falcon

                                        Thanks man. I totally agree. It's just different is all.

                                        Jeremy Falcon

                                        L Offline
                                        L Offline
                                        Lost User
                                        wrote on last edited by
                                        #35

                                        And it is still safer than C or C++ - because these two have undefined behavior.

                                        J 1 Reply Last reply
                                        0
                                        • K Kirk 10389821

                                          And then the MORON who declares a variable like var window; which in one browser HIDES the window object, in the other it is ignored (a few years back). And your code works in once place, and not the other! OMFG... Otherwise, I actually LIKE javaScript as a teachable language. Just not the environment it lives!

                                          J Offline
                                          J Offline
                                          Jeremy Falcon
                                          wrote on last edited by
                                          #36

                                          Kirk 10389821 wrote:

                                          Otherwise, I actually LIKE javaScript as a teachable language. Just not the environment it lives!

                                          I can see that. I would think that's my biggest qualm with it too, although I extend its environment to also mean the amount of people using it and everyone wanting to put their hand in the pie and make 40 million frameworks that aren't always designed well.

                                          Jeremy Falcon

                                          1 Reply Last reply
                                          0
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • World
                                          • Users
                                          • Groups