“Sprawdź, czy ciąg jest pusty” Kod odpowiedzi

JavaScript Jeśli ciąg pusty

// Test whether strValue is empty or is None
if (strValue) {
    //do something
}
// Test wheter strValue is empty, but not None 
if (strValue === "") {
    //do something
}
Arno Deceuninck

Sprawdź, czy ciąg jest pustą Java

if (myString == null || myString.equals(""))
			throw new IllegalArgumentException("empty string");
ExceptionThrower

Sprawdź, czy ciąg jest pusty

let str1 = "Hello world!";
let str2 = "";
let str3 = 4;
console.log(str1.length === 0)
console.log(str2.length === 0)
console.log(str3.length === 0)

false
true
false
Grieving Gharial

Pusty ciąg w JavaScript

var s; // undefined
var s = ""; // ""
s.length // 0
Disturbed Dingo

Odpowiedzi podobne do “Sprawdź, czy ciąg jest pusty”

Pytania podobne do “Sprawdź, czy ciąg jest pusty”

Więcej pokrewnych odpowiedzi na “Sprawdź, czy ciąg jest pusty” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu