Comment convertir la chaîne en cas inversé dans JavaScript
const invertCase = (string) => {
const newText = string.replace(/./g, (c) =>
c === c.toUpperCase() ? c.toLowerCase() : c.toUpperCase()
);
return newText
};
mrmalik610