Finding The Longest Word In A String Using For Loop
Jun 28, 2019 · This is one of the most frequently asked questions in JavaScript interviews. Both in Large and Small companies. And ill be glad to share my knowledge with you. let myFunction = (names) => { let myArray = names.split(', '); let maxLength = 0; let res...
EEmran commented