Java Script
// comment
Naming convention : camelCase (first word starts with simple letter 2nd word with Capital and the rest words + it’s a variable)
JavaScript (JS) is a high-level programming language that allows you to add dynamic and interactive behavior to webpages. It is primarily used for client-side scripting, meaning it runs on the user's web browser rather than on the server.
JS enables you to manipulate webpage elements, respond to user interactions, validate forms, make network requests, perform calculations, and much more.

Here's a simple explanation of how JavaScript works:
<script> tag. It can also be stored in separate .js files and linked to HTML pages.Here's a simple JavaScript (with Html) code example that demonstrates an interactive button click:
<!DOCTYPE html>
<html>
<head>
<title>JavaScript Example</title>
</head>
<body>
<button id="myButton">Click Me</button>
<!--js code-->
<script>
// Access the button element
var button = document.getElementById("myButton");
// Add a click event listener to the button
button.addEventListener("click", function() {
// Code to be executed when the button is clicked
alert("Button clicked!");
});
</script>
</body>
</html>