javascriptCreates a function that takes a string and returns the concatenated first and last character. code example
Example: javascript get first 10 characters of string
var str = "Hello world That is reallly neat!";
var res = str.substring(0, 5);//get first 5 chars