Differences between revisions 1 and 2
Revision 1 as of 2023-01-08 17:15:27
Size: 1019
Comment:
Revision 2 as of 2023-01-08 17:53:43
Size: 1064
Comment:
Deletions are marked like this. Additions are marked like this.
Line 55: Line 55:
 * [[JavaScript/CryptoSubtle|CryptoSubtle]]

JavaScript

JavaScript is a lightweight scripting language designed to be run in web browsers.

Node has revolutionized JavaScript by enabling its use outside of browsers.


Example

As a standalone JavaScript file:

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

This can be used in a web page like:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example</title>
  <script src="example.js"></script>
</head>
<body>
  <p>"Hello, world!" has been written to the console.</p>
</body>
</html>

The script can also be embedded directly into the HTML like:

<script>
  console.log("Hello, world!");
</script>

To execute this outside of a browser, see Node.


Language

Frameworks


CategoryRicottone

JavaScript (last edited 2023-04-06 16:16:33 by DominicRicottone)