Given two strings, return boolean if s2 is a substring of s1.
// input: const s1 = 'hello world', s2 = 'world' // output: true
/* output */