Last active
January 24, 2019 08:38
-
-
Save geni429/28360b5b601c6e6836b80aa30c0465df to your computer and use it in GitHub Desktop.
Revisions
-
geni429 revised this gist
Jan 24, 2019 . 1 changed file with 2 additions and 2 deletions.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 @@ -1,5 +1,5 @@ const sum = function sumInteger(num1, num2) { const sumIntegerResult = num1 + num2; return sumIntegerResult; } -
geni429 created this gist
Jan 24, 2019 .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,5 @@ const sum = function sumInteger(num1, num2) { const sumResult = num1 + num2; return sumResult; }