Given two strings, return boolean if one string is an anagram of the other.
// input: const s1 = 'listen', s2 = 'silent' // output: true
/* output */