Contact: aviboots(AT)netvision.net.il
41,656 questions
54,319 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 */