A Javascript Program for getting the length of the sentence:-

 var sent = prompt("Enter the sentence");

var len = sent.length;

alert("The length of the sentence is " + len);

Comments