You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/js/String/Remove a specific number of...

7 lines
214 B
JavaScript

truncate_string = function (str1, length) {
if ((str1.constructor === String) && (length>0)) {
return str1.slice(0, length);
}
};
console.log(truncate_string("Robin Singh",4));