Given a string and a number, return the first n characters of the string.
// input: const s = 'orange', n = 3 // output: 'ora'
/* output */