Как получить первые 10 символов строки в узле JS

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