ECMAScript
ECMAScript is a scripting language for the web. Sometimes known as JavaScript.
Contents
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
