[JavaScript] String auf Inhalt prüfen

let s1 = "abc";

if (s1 && s1.length > 0)
{
    console.log("ok");
}