Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save oo1john/2b842ba69a33ed01ab8952edab93ff37 to your computer and use it in GitHub Desktop.

Select an option

Save oo1john/2b842ba69a33ed01ab8952edab93ff37 to your computer and use it in GitHub Desktop.

Revisions

  1. oo1john created this gist May 5, 2022.
    16 changes: 16 additions & 0 deletions gistfile1.txt
    Original 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();