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

console.log(y.toString());

              
cde