const files = [ 'c:\docs\a1.pdf', 'c:\docs\a1.pdf', 'c:\docs\pdf\a1.pdf', 'c:\docs\pdf\a2.pdf', 'c:\docs\pdf\a3.pdf', ]; let counter = 0; files.forEach((filePath) => { if (filePath.length > 15) counter++; }); console.log(counter); // ??
\