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.
-
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.
Nand32 wrote:
This is for my cousin btw.
Yeah, yeah - they all say that when they start to turn to the Dark Side ... :laugh:
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!
-
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.
There was one on Microsoft Virtual Academy, taught by Bob Tabor, which taught Javascript using just the Visual Studio Code console, without the need to open a web-page. 30 or 31 videos in all. Not finding them online now. Have downloaded all those videos and they are on my hard disk (downloaded sometime in 2018). Check if you can find these videos by Bob Tabor on Javascript. /Edit Got these videos - Beginner's guide to JavaScript Fundamentals By Bob Tabor - YouTube[^]
-
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.
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.
-
Nand32 wrote:
This is for my cousin btw.
Yeah, yeah - they all say that when they start to turn to the Dark Side ... :laugh:
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!
JS is more the Dumb Side of the Force. I am on the Dark Side and like it, but would not touch JS without gloves or perhaps better a complete protective suit.
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.
-
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.
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
-
JS is more the Dumb Side of the Force. I am on the Dark Side and like it, but would not touch JS without gloves or perhaps better a complete protective suit.
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.
Are you mad? Where the heck are you going to get enough PPE to protect you from JS? :laugh:
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!
-
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.
The ultimate book on the subject is in my opinion https://www.amazon.com/JavaScript-Definitive-Guide-Activate-Guides/dp/0596805527[^]
Young enough to know I can. Old enough to know I shouldn't. Stupid enough to do it anyway! JaxCoder.com
-
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.
-
Are you mad? Where the heck are you going to get enough PPE to protect you from JS? :laugh:
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!
I just have to ask my former employer. They had me running around in such a suit an entire summer long, measuring radiation, decontaminating trucks and other such nice activities.
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.
-
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.
Here is a list of best-resources-to-learn-javascript[^]
-
I just have to ask my former employer. They had me running around in such a suit an entire summer long, measuring radiation, decontaminating trucks and other such nice activities.
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.
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!
-
Nand32 wrote:
This is for my cousin btw.
Yeah, yeah - they all say that when they start to turn to the Dark Side ... :laugh:
"I have no idea what I did, but I'm taking full credit for it." - ThisOldTony AntiTwitter: @DalekDave is now a follower!
OriginalGriff wrote:
Yeah, yeah - they all say that when they start to turn to the Dark Side ..
You mean back to coding the dark screen CLI ? ;P Hehe, my cousin wanted to escape programming and wanted to pursue management degree. But because of the lockdown things changed and now he's desperate for any job. What we have mostly is technical jobs with low pay. So he's gonna learn the stuff.
-
Here is a list of best-resources-to-learn-javascript[^]
-
The ultimate book on the subject is in my opinion https://www.amazon.com/JavaScript-Definitive-Guide-Activate-Guides/dp/0596805527[^]
Young enough to know I can. Old enough to know I shouldn't. Stupid enough to do it anyway! JaxCoder.com
-
Try this: JavaScript | MDN[^]
-
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
-
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.
I searched for a core JS tutorial for a while, I couldn't find so I asked him to start with Python for now. Though my preference would have been C to start with. Python is more famed so he's starting with it and the idea is to compare each code exercise with JS equivalent.
-
There was one on Microsoft Virtual Academy, taught by Bob Tabor, which taught Javascript using just the Visual Studio Code console, without the need to open a web-page. 30 or 31 videos in all. Not finding them online now. Have downloaded all those videos and they are on my hard disk (downloaded sometime in 2018). Check if you can find these videos by Bob Tabor on Javascript. /Edit Got these videos - Beginner's guide to JavaScript Fundamentals By Bob Tabor - YouTube[^]
-
I searched for a core JS tutorial for a while, I couldn't find so I asked him to start with Python for now. Though my preference would have been C to start with. Python is more famed so he's starting with it and the idea is to compare each code exercise with JS equivalent.
C always is a good choice. Unfortunately both my C compiler and the emulator can't keep up with the hardware I have been building, so I'm roughing it with assembly.
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.