fix: add comma to fix typo (#47378)

added a comma to fix typo
pull/47379/head
Leah Thompson 2022-08-25 07:36:35 -04:00 committed by GitHub
parent 065edb38a8
commit c759d83cd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ But first, let's cover some functional terminology:
Functions that can be assigned to a variable, passed into another function, or returned from another function just like any other normal value, are called <dfn>first class</dfn> functions. In JavaScript, all functions are first class functions.
The functions that take a function as an argument, or return a function as a return value are called <dfn>higher order</dfn> functions.
The functions that take a function as an argument, or return a function as a return value, are called <dfn>higher order</dfn> functions.
When functions are passed in to or returned from another function, then those functions which were passed in or returned can be called a <dfn>lambda</dfn>.