A good "pure" Javascript 'language' tutorial
-
Is there any good links to learn the core JS fundamentals thoroughly ? Most tutorials online assume everybody wants to learn JS to develop Web. For example W3Schools:
function myFunction() {
document.getElementById("demo1").innerHTML = "Hello Dolly!";
document.getElementById("demo2").innerHTML = "How are you?";
}oh, no "document." stuff :doh: That confuses the kids. I just want JS that's used at the backend. i.e Node. But when I search for Node.js based Tutorial they talk all about the libraries and APIs in Node. Like FileSystem, Network and other stuff directly. Not much of JS fundamentals. Is there a site where I can learn JS, the python or C way. Just data structures and fundamentals. This is for my cousin btw.
If you're still looking, add "vanilla js" to your Google queries. That might filter down the results a bit to more relevant pages. You may come across the [Vanilla JS](http://vanilla-js.com/) site. It might not be obvious at first, but it's pretty much tongue-in-cheek.
-
Don't forget the welding mask - JS enters through the eyes, and contaminates the soul ...
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!
So that's why some of the the raiders wear welding goggles, even at night! Damn! Now you have brought me to dig out that game again. Skyrimk with guns. With a new character. Little Mary Sue has just found that old power armor suit plus minigun and given the raisers what they deserve. Power armor protects you from everything: Fallout 4 Power Armor vs Raiders - YouTube[^]
I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.
-
Personally, I learned JavaScript from JavaScript Succinctly[^] (and then applying it in my job). Back in the day you needed to create a (free) Syncfusion account to download the books. I think you can read it all online without an account now. They have a similar book on Node.js: Node.js Succinctly[^]. What I like about the succinctly series is that they are, well, succinct. About 100 pages a book, but often less. If you do decide to create an account and give them your real phone number, they do call you for marketing purposes although I've never found them to be annoying or pushy. I gave them my real phone number because I write for them as well so they'd know I'm lying anyway :laugh: Then there's Learning JavaScript Essentials by Addy Osmani[^]. Another free ebook (no registration required) explaining common patterns in JavaScript. It's a long read and you won't need a lot of it, but I'd recommend checking out the Constructor pattern, Module pattern, Revealing Module pattern, the AMD and CommonJS patterns and the JavaScript Namespacing patterns. Those are very much used patterns and I've found them to make the difference between a good and a bad JavaScript programmer.
Best, Sander sanderrossel.com Migrating Applications to the Cloud with Azure arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly
:thumbsup:
«One day it will have to be officially admitted that what we have christened reality is an even greater illusion than the world of dreams.» Salvador Dali
-
Is there any good links to learn the core JS fundamentals thoroughly ? Most tutorials online assume everybody wants to learn JS to develop Web. For example W3Schools:
function myFunction() {
document.getElementById("demo1").innerHTML = "Hello Dolly!";
document.getElementById("demo2").innerHTML = "How are you?";
}oh, no "document." stuff :doh: That confuses the kids. I just want JS that's used at the backend. i.e Node. But when I search for Node.js based Tutorial they talk all about the libraries and APIs in Node. Like FileSystem, Network and other stuff directly. Not much of JS fundamentals. Is there a site where I can learn JS, the python or C way. Just data structures and fundamentals. This is for my cousin btw.
NodeSchool https://nodeschool.io/#workshoppers You can even set up learnyounode on a USB stick so someone can learn without needing interwebs. Have done it before.
If you say that getting the money is the most important thing You will spend your life completely wasting your time You will be doing things you don't like doing In order to go on living That is, to go on doing things you don't like doing Which is stupid. - Alan Watts https://www.youtube.com/watch?v=-gXTZM\_uPMY
-
NodeSchool https://nodeschool.io/#workshoppers You can even set up learnyounode on a USB stick so someone can learn without needing interwebs. Have done it before.
If you say that getting the money is the most important thing You will spend your life completely wasting your time You will be doing things you don't like doing In order to go on living That is, to go on doing things you don't like doing Which is stupid. - Alan Watts https://www.youtube.com/watch?v=-gXTZM\_uPMY
-
Is there any good links to learn the core JS fundamentals thoroughly ? Most tutorials online assume everybody wants to learn JS to develop Web. For example W3Schools:
function myFunction() {
document.getElementById("demo1").innerHTML = "Hello Dolly!";
document.getElementById("demo2").innerHTML = "How are you?";
}oh, no "document." stuff :doh: That confuses the kids. I just want JS that's used at the backend. i.e Node. But when I search for Node.js based Tutorial they talk all about the libraries and APIs in Node. Like FileSystem, Network and other stuff directly. Not much of JS fundamentals. Is there a site where I can learn JS, the python or C way. Just data structures and fundamentals. This is for my cousin btw.
I used Javascript on the command line to embed it in a library before Node.js was built. Should you need an interactive console in Windows, have a look at MDN's Spidermonkey jsshell: SpiderMonkey: The Mozilla JavaScript runtime - Mozilla | MDN[^] Among the many pages of MDN this one gives a bird's eye view on the basics of the language. A re-introduction to JavaScript (JS tutorial) - JavaScript | MDN[^] Finally, Douglas Crockford was my favorite JavaScript expert: Books By Douglas Crockford[^] and Douglas Crockford's JavaScript[^]
-
Nand32 wrote:
This is for my cousin btw
I'm also not speaking for myself, but my uncle's butler thinks that JS just as bad a habit as good old BASIC or PHP were. :-) To answer your question: Just like BASIC or PHP, pure JS has only very underdeveloped I/O capabilities and needs its libraries and frameworks to actually do something without bloating up the code samples to enormous size. Especially those who the samples are written for might not see the forest for all the trees. Only to replace the forest with a nice big swamp of frameworks :-). I'm certainly no friend of JS, but I think you may be out of luck here.
I have lived with several Zen masters - all of them were cats. His last invention was an evil Lasagna. It didn't kill anyone, and it actually tasted pretty good.
Ahh, the elaborated language-embedded I/O functions of the Advanced Languages like C, C++ and Pascal in my childhood. Just put a red A letter to the second column of the second row from the top... Also, for a true language integrated query go for Foxpro's scatter/gather commands instead...
-
Is there any good links to learn the core JS fundamentals thoroughly ? Most tutorials online assume everybody wants to learn JS to develop Web. For example W3Schools:
function myFunction() {
document.getElementById("demo1").innerHTML = "Hello Dolly!";
document.getElementById("demo2").innerHTML = "How are you?";
}oh, no "document." stuff :doh: That confuses the kids. I just want JS that's used at the backend. i.e Node. But when I search for Node.js based Tutorial they talk all about the libraries and APIs in Node. Like FileSystem, Network and other stuff directly. Not much of JS fundamentals. Is there a site where I can learn JS, the python or C way. Just data structures and fundamentals. This is for my cousin btw.
-
Is there any good links to learn the core JS fundamentals thoroughly ? Most tutorials online assume everybody wants to learn JS to develop Web. For example W3Schools:
function myFunction() {
document.getElementById("demo1").innerHTML = "Hello Dolly!";
document.getElementById("demo2").innerHTML = "How are you?";
}oh, no "document." stuff :doh: That confuses the kids. I just want JS that's used at the backend. i.e Node. But when I search for Node.js based Tutorial they talk all about the libraries and APIs in Node. Like FileSystem, Network and other stuff directly. Not much of JS fundamentals. Is there a site where I can learn JS, the python or C way. Just data structures and fundamentals. This is for my cousin btw.
Pretty sure they have something on freecodecamp.org but I'm not sure how good it is.
Elephant elephant elephant, sunshine sunshine sunshine
-
Is there any good links to learn the core JS fundamentals thoroughly ? Most tutorials online assume everybody wants to learn JS to develop Web. For example W3Schools:
function myFunction() {
document.getElementById("demo1").innerHTML = "Hello Dolly!";
document.getElementById("demo2").innerHTML = "How are you?";
}oh, no "document." stuff :doh: That confuses the kids. I just want JS that's used at the backend. i.e Node. But when I search for Node.js based Tutorial they talk all about the libraries and APIs in Node. Like FileSystem, Network and other stuff directly. Not much of JS fundamentals. Is there a site where I can learn JS, the python or C way. Just data structures and fundamentals. This is for my cousin btw.
I've found the series by Kyle Simpson https://www.amazon.com/s?k=kyle+simpson+javascript[^] to be very detailed and covering a lot of the fine detail of JavaScript.
-
Ahh, the elaborated language-embedded I/O functions of the Advanced Languages like C, C++ and Pascal in my childhood. Just put a red A letter to the second column of the second row from the top... Also, for a true language integrated query go for Foxpro's scatter/gather commands instead...
-
Is there any good links to learn the core JS fundamentals thoroughly ? Most tutorials online assume everybody wants to learn JS to develop Web. For example W3Schools:
function myFunction() {
document.getElementById("demo1").innerHTML = "Hello Dolly!";
document.getElementById("demo2").innerHTML = "How are you?";
}oh, no "document." stuff :doh: That confuses the kids. I just want JS that's used at the backend. i.e Node. But when I search for Node.js based Tutorial they talk all about the libraries and APIs in Node. Like FileSystem, Network and other stuff directly. Not much of JS fundamentals. Is there a site where I can learn JS, the python or C way. Just data structures and fundamentals. This is for my cousin btw.
I know exactly what you mean and please without jQuery, God forbid React and Angular. This book wold be a nice start. Get the basics of the language (no web). [The Principles of Object-Oriented JavaScript: Zakas, Nicholas C.: 9781593275402: Amazon.com: Books](https://www.amazon.com/Principles-Object-Oriented-JavaScript-Nicholas-Zakas/dp/1593275404) And don't worry about the "Object-Oriented" in the title. Reintroducing JavaScript, a free chapter from a book: [Appendix D. Reintroducing JavaScript · Getting MEAN with Mongo, Express, Angular, and Node Livebook](https://livebook.manning.com/book/getting-mean-with-mongo-express-angular-and-node/appendix-d/) [Learn JavaScript: The Hard Parts -- Dive Deep into JavaScript to Solve Complex Challenges](https://frontendmasters.com/courses/javascript-hard-parts/) [bind and this - Object Creation in JavaScript P1 - FunFunFunction #43 - YouTube](https://www.youtube.com/watch?v=GhbhD1HR5vk&list=PL0zVEGEvSaeHBZFy6Q8731rcwk0Gtuxub) [Higher-order functions - Part 1 of Functional Programming in JavaScript - YouTube](https://www.youtube.com/watch?v=BMUiFMZr7vk&list=PL0zVEGEvSaeEd9hlmCXrk5yUyqUag-n84) And don't worry about the "Functional" in the title. On the net search for articles by this guy [https://tylermcginnis.com/ultimate-guide-to-execution-contexts-hoisting-scopes-and-closures-in-javascript/\](https://tylermcginnis.com/ultimate-guide-to-execution-contexts-hoisting-scopes-and-closures-in-javascript/) He has the ability to discuss technical matters without throwing hipster abbreviations at you. greetings
-
I used Javascript on the command line to embed it in a library before Node.js was built. Should you need an interactive console in Windows, have a look at MDN's Spidermonkey jsshell: SpiderMonkey: The Mozilla JavaScript runtime - Mozilla | MDN[^] Among the many pages of MDN this one gives a bird's eye view on the basics of the language. A re-introduction to JavaScript (JS tutorial) - JavaScript | MDN[^] Finally, Douglas Crockford was my favorite JavaScript expert: Books By Douglas Crockford[^] and Douglas Crockford's JavaScript[^]
-
I've found the series by Kyle Simpson https://www.amazon.com/s?k=kyle+simpson+javascript[^] to be very detailed and covering a lot of the fine detail of JavaScript.
-
I'm most of the way through this tutorial. It has a separate section for the DOM. It is amazeballs: https://javascript.info/[^]
-
I know exactly what you mean and please without jQuery, God forbid React and Angular. This book wold be a nice start. Get the basics of the language (no web). [The Principles of Object-Oriented JavaScript: Zakas, Nicholas C.: 9781593275402: Amazon.com: Books](https://www.amazon.com/Principles-Object-Oriented-JavaScript-Nicholas-Zakas/dp/1593275404) And don't worry about the "Object-Oriented" in the title. Reintroducing JavaScript, a free chapter from a book: [Appendix D. Reintroducing JavaScript · Getting MEAN with Mongo, Express, Angular, and Node Livebook](https://livebook.manning.com/book/getting-mean-with-mongo-express-angular-and-node/appendix-d/) [Learn JavaScript: The Hard Parts -- Dive Deep into JavaScript to Solve Complex Challenges](https://frontendmasters.com/courses/javascript-hard-parts/) [bind and this - Object Creation in JavaScript P1 - FunFunFunction #43 - YouTube](https://www.youtube.com/watch?v=GhbhD1HR5vk&list=PL0zVEGEvSaeHBZFy6Q8731rcwk0Gtuxub) [Higher-order functions - Part 1 of Functional Programming in JavaScript - YouTube](https://www.youtube.com/watch?v=BMUiFMZr7vk&list=PL0zVEGEvSaeEd9hlmCXrk5yUyqUag-n84) And don't worry about the "Functional" in the title. On the net search for articles by this guy [https://tylermcginnis.com/ultimate-guide-to-execution-contexts-hoisting-scopes-and-closures-in-javascript/\](https://tylermcginnis.com/ultimate-guide-to-execution-contexts-hoisting-scopes-and-closures-in-javascript/) He has the ability to discuss technical matters without throwing hipster abbreviations at you. greetings
-
Pretty sure they have something on freecodecamp.org but I'm not sure how good it is.
Elephant elephant elephant, sunshine sunshine sunshine
-
Is there any good links to learn the core JS fundamentals thoroughly ? Most tutorials online assume everybody wants to learn JS to develop Web. For example W3Schools:
function myFunction() {
document.getElementById("demo1").innerHTML = "Hello Dolly!";
document.getElementById("demo2").innerHTML = "How are you?";
}oh, no "document." stuff :doh: That confuses the kids. I just want JS that's used at the backend. i.e Node. But when I search for Node.js based Tutorial they talk all about the libraries and APIs in Node. Like FileSystem, Network and other stuff directly. Not much of JS fundamentals. Is there a site where I can learn JS, the python or C way. Just data structures and fundamentals. This is for my cousin btw.
https://developer.mozilla.org/en-US/docs/Web/JavaScript
https://developer.mozilla.org/en-US/docs/Web/JavaScript/A\_re-introduction\_to\_JavaScript
https://github.com/trekhleb/javascript-algorithms
https://github.com/thejsway/thejsway (section on nodejs)
https://github.com/leonardomso/33-js-concepts
https://eloquentjavascript.net/ (section on nodejs)
http://domenlightenment.com/
https://www3.ntu.edu.sg/home/ehchua/programming/webprogramming/JavaScript\_Introduction.html
https://javascript.info/https://www.freecodecamp.org/news/my-giant-javascript-basics-course-is-now-live-on-youtube-and-its-100-free-9020a21bbc27/
web intros
https://docs.microsoft.com/en-us/previous-versions/bb288795(v=vs.80)
https://docs.microsoft.com/en-us/previous-versions/bb288796(v=vs.80)