JavaScript

JavaScript is a programming language used to make websites interactive, allowing web pages to respond to user actions and dynamically update content. It's initially designed to run in web browsers, but with the introduction of Node.js, it can now run on nearly any platform.

Features

  • Interpreted
  • Dynamically-typed

Sample Program (Hello World)

console.log('Hello, world!');