Experience Designer
The task is to check if a string (first argument, str) ends with the given target string (second argument, target).
str
target
The task is to return an array consisting of the largest number from each provided sub-array.
The task is to return the provided string with the first letter of each word capitalized, while the rest of the word is in lower case.
The task is to return the length of the longest word in a string.
The solution is quite simple. First we create an array of words out of the given string. We do…