So überprüfen Sie, ob eine Zeichenfolge nur Räume in JavaScript enthält
let str = " ";
if (!str.replace(/\s/g, "").length) {
console.log("string only contains whitespace (ie. spaces, tabs or line breaks)");
}
Pixel Freak