Created
May 5, 2022 07:59
-
-
Save oo1john/2b842ba69a33ed01ab8952edab93ff37 to your computer and use it in GitHub Desktop.
Revisions
-
oo1john created this gist
May 5, 2022 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,16 @@ // -------------- definim functiile ------------- const blockFct = function() { console.log("block function"); } const arrowFct = () => console.log('arrow function'); const expressionFct = function() { console.log("expression function"); } // -------------- apelam functiile ------------- blockFct(); arrowFct(); expressionFct();