Come posso, usando Javascript, creare una funzione che taglierà la stringa passata come argomento, a una lunghezza specificata, anche passata come argomento. Per esempio:
var string = "this is a string";
var length = 6;
var trimmedString = trimFunction(length, string);
// trimmedString should be:
// "this is"
Qualcuno ha idee? Ho sentito qualcosa sull'utilizzo della sottostringa, ma non ho capito bene.