Create a function that returns the number of characters shared between two words.
sharedLetters("apple", "meaty") ➞ 2 // Since "ea" is shared between "apple" and "meaty". sharedLetters("fan", "forsook") ➞ 1 sharedLetters("spout", "shout") ➞ 4
N/A