scope and closures: ch8, fixing tech mistake, closes #1646

This commit is contained in:
Kyle Simpson 2020-03-23 10:15:58 -05:00
parent c3dcc597dc
commit f6e1e05bc2
No known key found for this signature in database
GPG Key ID: F5D84852C80B2DF8

View File

@ -286,7 +286,7 @@ The ESM format shares several similarities with the CommonJS format. ESM is file
Instead of `module.exports` in CommonJS, ESM uses an `export` keyword to expose something on the public API of the module. The `import` keyword replaces the `require(..)` statement. Let's adjust "students.js" to use the ESM format:
```js
export getName;
export { getName };
// ************************
@ -305,7 +305,7 @@ function getName(studentID) {
}
```
The only change here is the `export getName` statement. As before, `export` statements can appear anywhere throughout the file, though `export` must be at the top-level scope; it cannot be inside any other block or function.
The only change here is the `export { getName }` statement. As before, `export` statements can appear anywhere throughout the file, though `export` must be at the top-level scope; it cannot be inside any other block or function.
ESM offers a fair bit of variation on how the `export` statements can be specified. For example: