“JavaScript Sprawdź, czy var to ciąg” Kod odpowiedzi

JavaScript jest zmiennym ciągiem

if (typeof myVar === 'string'){
    //I am indeed a string
}
Grepper

JavaScript Sprawdź, czy var to ciąg

if (typeof a_string === 'string') {
    // this is a string
}
Thoughtful Tortoise

JS Sprawdź, czy zmienna to ciąg

if (typeof myVar === 'integer'){
    //I am indeed an integer
}

if (typeof myVar === 'boolean'){
    //I am indeed a boolean
}
Wandering Weevil

Jeśli zmienna to ciąg JavaScript

var booleanValue = true; 
var numericalValue = 354;
var stringValue = "This is a String";
var stringObject = new String( "This is a String Object" );
alert(typeof booleanValue) // displays "boolean"
alert(typeof numericalValue) // displays "number"
alert(typeof stringValue) // displays "string"
alert(typeof stringObject) // displays "object"
Fragile Flamingo

Sprawdź, czy wartość to ciąg JavaScript

let eventValue = event.target.value;

    if (/^\d+$/.test(eventValue)) {
      eventValue = parseInt(eventValue, 10);
    }

//If value is a string, it converts to integer. 

//Otherwise it remains integer.
Rey

Odpowiedzi podobne do “JavaScript Sprawdź, czy var to ciąg”

Pytania podobne do “JavaScript Sprawdź, czy var to ciąg”

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

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

Przeglądaj inne języki kodu