Javascript 101
the Basics to get you started with Javascript, the language of the browser

the Basics to get you started with Javascript, the language of the browser

JavaScript (JS) is a powerful and versatile programming language that adds interactivity and dynamism to web pages. It's one of the three core languages of web development, alongside HTML and CSS. This guide will walk you through the fundamentals of getting started with JavaScript.
While not essential, having a basic understanding of HTML and CSS will prove beneficial as you learn JS. Familiarity with these languages will help you grasp how JS interacts with web page structure and styling.
There are two approaches to running JavaScript code:
if this is your first time learning JavaScript, we reccomend you to use the Browser Approach
this is what a devtools console should look like
Let's write our first JavaScript program to display the classic "Hello World!" message.
in your devtools console type the following
console.log("Hello World!");
the console.log function is used to print messages to the console

There you go! your first javascript code! to continue on, you can look up tutorials online or look at the Javascript documentations