-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Errata to the first printing by MIT Press #733
Comments
should be
to make more sense and to be in line with SICP. fixed in online edition; fix is PR #798. |
should be
Fixed in online edition; fix is PR #778. |
1.1.6, page 15, the first two bullet points in the middle of the page: e1 && e2 is syntactic sugar for e1 ? e2 : false, and e1 || e2 is syntactic sugar for e1 ? true : e2. Strictly speaking, in JavaScript, e1 && e2 is syntactic sugar for e1 ? e2 : e1 and e1 || e2 is syntactic sugar for e1 ? e1 : e2. Direct link to the relevant portion of the language specification: https://tc39.es/ecma262/multipage/ecmascript-language-expressions.html#sec-binary-logical-operators-runtime-semantics-evaluation Solution: Weaken the phrasing to: "We assume16 this syntactic form to be syntactic sugar for The issue is discussed in #776. Fixed in #1033. |
1.2.6, page 46. Inconsistent exercise. The question makes use of a function The issue is discussed in #973. Fixed in #1045. |
This issue collects the errata of the print edition of SICP JS (print 2022):
should be
fixed in online edition; fix is PR #747.
The text was updated successfully, but these errors were encountered: