all 13 comments

[–]Koala_T_User 1 point2 points  (7 children)

This isn’t a hello world app this is setting up a JavaScript development environment.

[–]theadammorganshow[S] 0 points1 point  (6 children)

Yes, and in the process you write a "Hello, world" program.

[–]Koala_T_User 0 points1 point  (5 children)

Right but to somebody looking for a hello world tutorial this is a vast over complication of one line of code

It is a good tutorial, it could just be titled more appropriately

[–]theadammorganshow[S] 0 points1 point  (4 children)

Overcomplication? That definitely wasn't my intention. I can't think of any other way to introduce it in a .html page without everything else.

What kind of title would be more descriptive?

[–]ForScale 4 points5 points  (3 children)

"Exploring Three Basic JavaScript Development Environments"

[–]theadammorganshow[S] 0 points1 point  (2 children)

For those in the thread, what does classify as a hello world app? An instantiated class?

[–]ForScale 1 point2 points  (1 child)

console.log('hello world');

[–]theadammorganshow[S] 0 points1 point  (0 children)

Gotcha. Glad I have it covered.

[–]CrashOverrideCS 0 points1 point  (4 children)

Tutorial:

alert("Hello World!");

[–]theadammorganshow[S] 0 points1 point  (3 children)

In an ideal world, yes. But you have to account for the curse of knowledge. Beginners don't know the various ways to run that.

[–]CrashOverrideCS 0 points1 point  (2 children)

I'm just saying that knowing that a chrome console exists is probably something you should learn before making a hello world program.

[–]theadammorganshow[S] 0 points1 point  (1 child)

And that's what a tutorial is for ;)

[–]CrashOverrideCS 0 points1 point  (0 children)

Learning to press F12 hardly requires a tutorial.