Why JavaScript is Insane. Reason 26
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
The first thing that works. That's what you use. The collateral knowledge gained might be bookmarked for a later look. Forget the problem. Get up the next day. Might or might not encounter another problem and recall that it IS the same ... what was it? A problem? This is the definition of a bad character. You do this, you're bad.
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
Chris Maunder wrote:
If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding?
When I went to college I don't remember anyone teaching anything like that for the languages that they taught which included pascal and fortran. So not sure why anything should be different now. More so since I have since learned of course that often "best-practice" is very likely only "my opinion" when someone actually questions the source. In college though the 'source' at least sometimes was cited as some book which the teacher was the author - so often not really a viable source even then.
Chris Maunder wrote:
...as to how knowledge of these ancient arts is passed down in a way that let's people move on sanely.
By doing it day to day in a job. Certainly how the two people that I worked with in a lab in college did it. The lab certainly wasn't teaching anyone how to create an actual circuit but at that point they had been doing it for a job for about 15 years. They were only going to the university because, at that time, the only way you could move up at their company and get paid more was by getting a degree. Despite the very obvious evidence that taking the class wasn't going to teach them anything at all.
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
They didn't teach JS when I was in college (Java instead X|). Tbh I think a lot of JS confusion comes from attempting to apply how other languages work that you already know to how JS works - and it's almost always wrong. The topic that always comes to mind is
this
[^]. Personally I like that JS lets you have flexible control on context, use, and binding. I disliked the complexity at first but after spending some time with the language I see the usefulness on top of it being much less mysterious now. Some stuff is obsolete but some things can only be accomplished using a specific technique as the article points out. -
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
I am glad I use C!
-
I am glad I use C!
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
where are the other 25 reasons ? curious to read those too. :)
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
Chris Maunder wrote:
Is anyone learning JavaScript at a school or college?
Sorry... we have to rephrase that as per the PM to make it 'inclusive'. What had heretofore been known as JavaScript will now be called BeverageScript. Office of the PM
-
Chris Maunder wrote:
Is anyone learning JavaScript at a school or college?
Sorry... we have to rephrase that as per the PM to make it 'inclusive'. What had heretofore been known as JavaScript will now be called BeverageScript. Office of the PM
BeverageKind is, I think, the accepted term.
cheers Chris Maunder
-
BeverageKind is, I think, the accepted term.
cheers Chris Maunder
Insanity rules...
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
In my experience people don't learn JavaScript. They copy-paste random code until it magically starts working, then refactor everything into a gazillion functions and plaster unit-tests all over it. Once they realize they've written too much code and have too many dependencies, they call it a framework. ¯\_(ツ)_/¯
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
Your question almost seems to assume that those writing JS are "learning it at school or college". My impression is there is a lot of blind use of "other" code, that is misunderstood, then f*rked, patched, etc. Exactly what is going on in every new crypto-currency.
"(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal
-
I am glad I use C!
-
I grad I'm NOT using C or C++. The day of manual memory management, its so flexible, so archaic, its such a dinosaur. I have to go back to it once in a while when developing IoT stuff, but other than that, I'm happy with C# and even JS.
So called 'garbage collection'. That is why apps these days are so bloated. Managing the memory yourself means you only use what you need, when you need it. It really is very simple.
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
-
So called 'garbage collection'. That is why apps these days are so bloated. Managing the memory yourself means you only use what you need, when you need it. It really is very simple.
-
And so called "Memory Leaks" creep up on self managed memory allocation sometime blue-screened the entire app. Or are we so perfect that it will never happens? ;)
Why would memory leak? You free memory when you have done with it.
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
-
where are the other 25 reasons ? curious to read those too. :)
[JavaScript reference - JavaScript | MDN](https://developer.mozilla.org/bm/docs/Web/JavaScript/Reference)
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
-
6 ways to declare JavaScript functions[^] and the related Function Declarations vs. Function Expressions[^] Is anyone learning JavaScript at a school or college? If so do they go into this stuff or just navigate around it and give you a best-practices approach to JavaScript coding? I'm always curious as to how knowledge of these ancient arts is passed down in a way that lets people move on sanely.
cheers Chris Maunder
JavaScript is such a mess that in the past few months while writing some code that should have been simple, loading configuration before starting listening for user requests, I caught myself thinking that what I was doing would have been trivial if I was writing it in C. Add a decent HTTP library or *cgi server and the rest of it wouldn't have been too difficult either. I'm pretty convinced that no one who says anything good about JavaScript has ever even tried to read the ECMAScript specification.