Get your own Node server Result Size: 625 x 565
let x = Buffer.from('abcdef');
let y = x.slice(2,5);

console.log(y.toString());

              
cde