ECMAScript

ECMAScript is a scripting language for the web. Sometimes known as JavaScript.


Example

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

This can be embedded into web page like:

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Example</title>
<script>
  console.log("Hello, world!");
</script>
</head>
</html>

Instead of the script being inline, it can be sourced from an external file like:

<script src="example.js"></script>


Language


See also

MDN JavaScript reference

Node


CategoryRicottone

ECMAScript (last edited 2025-12-19 20:28:39 by DominicRicottone)