Skip to content

Commit 8097aa0

Browse files
authored
typo fix #10
1 parent a4a56a8 commit 8097aa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

challenges/functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ Hoisting was thought up as a general way of thinking about how execution context
322322
```js
323323
(function IIFE(param1, param2){
324324
console.log("I am an Immediately invoked function");
325-
console.log("Parameter 1: " + parma1);
325+
console.log("Parameter 1: " + param1);
326326
console.log("Parameter 2: " + typeof param2);
327327
console.log("Parameter 2 output: " + param2());
328328
})("hello", function(){ return "I am a string from a function passed to IIFE"; });

0 commit comments

Comments
 (0)