JavaScript Vérifiez si la chaîne se termine avec l'espace

    const str = "hello world ";
    const a = str.slice(-1);
    if (a == " ") {
        console.log("ends with space");

    }
Undefined