Given a string and a number, return the last n characters.

// input:
const s = 'blueberry ice cream', n = 5

// output:
'cream'
Loading...
/* output */

Next