Como buscar 10 primeiros caracteres de uma string no nó js

var str = '12345678value';
var strshortened = str.slice(0,8);
shravani