Skip to content

Commit 4c887a7

Browse files
authored
Merge pull request #207 from otmon76/1.2.16
Function expressions
2 parents 3cf4cb7 + d956799 commit 4c887a7

File tree

1 file changed

+1
-5
lines changed
  • 1-js/02-first-steps/16-function-expressions

1 file changed

+1
-5
lines changed

1-js/02-first-steps/16-function-expressions/article.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,11 +82,7 @@ let řekniAhoj = function() { // (1) vytvoření
8282
alert( "Ahoj" );
8383
};
8484

85-
<<<<<<< HEAD
86-
let funkce = řekniAhoj;
87-
=======
88-
let func = sayHi; //(2)
89-
>>>>>>> 1dce5b72b16288dad31b7b3febed4f38b7a5cd8a
85+
let funkce = řekniAhoj; // (2)
9086
// ...
9187
```
9288

0 commit comments

Comments
 (0)