We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed6ccf2 commit 15fb74bCopy full SHA for 15fb74b
src/pages/guide/javascript/syntax-cheatsheet.md
@@ -83,8 +83,8 @@ JavaScript | Reason
83
JavaScript | Reason
84
--------------------------------------|--------------------------------
85
`arg => retVal` | `fun arg => retVal`
86
-`function named(arg) {...}` | `fun named arg => ...`
87
-`const f = function named(arg) {...}` | `let f = fun named arg => ...`
+`function named(arg) {...}` | `let named arg => ...`
+`const f = function(arg) {...}` | `let f = fun arg => ...`
88
`add(4, add(5, 6))` | `add 4 (add 5 6)`
89
90
#### Blocks
0 commit comments