Typo: insert omitted 'function' keyword

This commit is contained in:
Bulat Musin 2020-03-25 11:12:37 +03:00 committed by GitHub
parent f6e1e05bc2
commit 7dec66e0f7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -153,7 +153,7 @@ Now let's examine an example where the closed-over variable is updated:
function makeCounter() {
var count = 0;
return getCurrent(){
return function getCurrent() {
count = count + 1;
return count;
};