Given two strings, return boolean if s1 ends with s2.
// input: const s1 = 'hello', s2 = 'lo' // output: true
/* output */