diff --git a/Functions.js b/Functions.js index 92dfe35..9e55c3d 100644 --- a/Functions.js +++ b/Functions.js @@ -1,3 +1,7 @@ -function returnStringLength(string1) { +function returnLength(string1) { return string1.length(); +} + +function returnStringName(name) { + return 'Hello friend ' + name; } \ No newline at end of file