Answers for "find maximum word from string in javascript"

3

find longest word in string javascript

function data(str){
           var show = str.split(" ");
            show.sort(function (a,b){
                return b.length - a.length; 
            })
            return show[0];
      }
      console.log(data(str = "javascript is my favourite language "));
Posted by: Guest on October-18-2020
-1

javascript set max length of string

String.prototype.trimEllip = function (length) {
  return this.length > length ? this.substring(0, length) + "..." : this;
}
Posted by: Guest on January-06-2020

Code answers related to "find maximum word from string in javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language