The toLocaleLowerCase() of a String returns the string converted to lower case according to any locale-specific case mappings.

    
    const turkey = 'İstanbul';

    const turkeyLocaleLowerCase = turkey.toLocaleLowerCase('en-US');

    console.log(turkeyLocaleLowerCase);
    // "i̇stanbul"