+ 2
How to use js
đ€đ€đ€đ€
4 RĂ©ponses
+ 15
JavaScript is most commonly used as a client side scripting language. Thismeans that JavaScript code is writteninto an HTML page. When a user requests an HTML page with JavaScript in it, the script is sent to the browser and it's up to the browser to do something with it.
https://www.w3schools.com/js/
+ 5
JS makes your website responsiveđ
+ 4
JavaScript is one of the 3 languages all web developers must learn:
  1. HTML to define the content of web pages
  2. CSS to specify the layout of web pages
  3. JavaScript to program the behavior of web pages
https://www.w3schools.com/js/ this article will help you đ
+ 3
Hello. Put your JavaScript code between <script></script> tags in your HTML project. If you don't want to use HTML, only JS, then still save your project as HTML, but don't put any HTML content in it.
Example:
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script>*your code*</script>
</body>
</html>
You can create JavaScript and HTML code in a simple text editor on your computer and save the file as *name*.html. Then you can simply click it and the project is run on your web browser.
More info:
https://www.w3schools.com/html/html_scripts.asp