javascript if string empty

JavaScript
// Test whether strValue is empty or is None
if (strValue) {
    //do something
}
// Test wheter strValue is empty, but not None 
if (strValue === "") {
    //do something
}var s; // undefined
var s = ""; // ""
s.length // 0

Source

Also in JavaScript: