aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Akash Joshi <jakash1997@gmail.com> 2023-02-25 15:45:26 +0000
committerGravatar GitHub <noreply@github.com> 2023-02-25 09:45:26 -0600
commitcf7a09c0d31d160976bdf349c389e6992664b487 (patch)
tree4e935baac3f21d451353eb4eae27db49b6530e64
parent0d5d3e5dfca824e4ec7eba4fd7c2bcfd01486f1d (diff)
downloadbun-cf7a09c0d31d160976bdf349c389e6992664b487.tar.gz
bun-cf7a09c0d31d160976bdf349c389e6992664b487.tar.zst
bun-cf7a09c0d31d160976bdf349c389e6992664b487.zip
Update index.md (#2182)
-rw-r--r--docs/index.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/index.md b/docs/index.md
index 5e7241aaf..be9051a9f 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -38,7 +38,7 @@ JavaScript (or, more formally, ECMAScript) is just a _specification_ for a progr
### Browsers
-But most JavaScript programs don't run a vacuum. They need a way to access to the outside world to perform useful tasks. This is where _runtimes_ come in. They implement additional APIs that are then made available to the JavaScript programs they execute. Notably, browsers ship with JavaScript runtimes that implement a set of Web-specific APIs that are exposed via the global `window` object. Any JavaScript code executed by the browser can use these APIs to implement interactive or dynamic behavior in the context of the current webpage.
+But most JavaScript programs don't run in a vacuum. They need a way to access to the outside world to perform useful tasks. This is where _runtimes_ come in. They implement additional APIs that are then made available to the JavaScript programs they execute. Notably, browsers ship with JavaScript runtimes that implement a set of Web-specific APIs that are exposed via the global `window` object. Any JavaScript code executed by the browser can use these APIs to implement interactive or dynamic behavior in the context of the current webpage.
<!-- JavaScript runtime that exposes JavaScript engines are designed to run "vanilla" JavaScript programs, but it's often JavaScript _runtimes_ use an engine internally to execute the code and implement additional APIs that are then made available to executed programs.
JavaScript was [initially designed](https://en.wikipedia.org/wiki/JavaScript) as a language to run in web browsers to implement interactivity and dynamic behavior in web pages. Browsers are the first JavaScript runtimes. JavaScript programs that are executed in browsers have access to a set of Web-specific global APIs on the `window` object. -->