We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4a56a8 commit 8097aa0Copy full SHA for 8097aa0
challenges/functions.md
@@ -322,7 +322,7 @@ Hoisting was thought up as a general way of thinking about how execution context
322
```js
323
(function IIFE(param1, param2){
324
console.log("I am an Immediately invoked function");
325
- console.log("Parameter 1: " + parma1);
+ console.log("Parameter 1: " + param1);
326
console.log("Parameter 2: " + typeof param2);
327
console.log("Parameter 2 output: " + param2());
328
})("hello", function(){ return "I am a string from a function passed to IIFE"; });
0 commit comments