It seems like you are using an ad blocker. To enhance your experience and support our website, please consider:

  1. Signing in to disable ads on our site.
  2. Sign up if you don't have an account yet.
  3. Or, disable your ad blocker by doing this:
    • Click on the ad blocker icon in your browser's toolbar.
    • Select "Pause on this site" or a similar option for lancecourse.com.

Javascript in 100 bits

Course by zooboole,

Last Updated on 2025-01-28 08:04:00

Lesson 1 - Hello World in JavaScript

Lesson 1: Hello, World in JavaScript

console.log("Hello, World!");

Explanation:

console.log() is used to print messages to the console. This is a common starting point for learning any programming language.

Press Ctrl + Shift + J (Windows) or Cmd + Option + J (Mac) to open the browser's console. Type the code above to see the output.

See you in the next lesson.