Contact: aviboots(AT)netvision.net.il
39,971 questions
51,913 answers
573 users
const strings: string[] = ["c++", "python", "c#", "javascript", "swift", "java"]; const longestStringSize: number = Math.max(...(strings.map(el => el.length))); console.log(longestStringSize); /* run: 10 */