After several discussions with my friend @contrabourdon I was intrigued about learning JavaScript and with the recent creation of STEMGeeks community, I decided to give it a try.
I googled for online tutorials and I found site:
The first exercise I did was to write a phrase "Hello, World!" which wasn't hard at all. It goes with the principles of Kaizen which I wrote about in my previous post.
All I had to write was this:
console.log("Hello, World!")
That's it for my first lesson!
Next I will learn about the variables and types.
UPDATE: @javirid advised never forget to use ";" after each command. So here it is:
console.log("Hello, World!");
Thank you @javirid! I'm sure I will be doing lots of mistakes along the way. It's like mistaking sharps with flats on the piano when one just starts learning to play.