“Art der Variablen js” Code-Antworten

Art der Variablen js

// get type of variable

var number = 1
var string = 'hello world'
var dict = {a: 1, b: 2, c: 3}

console.log(typeof number) // number
console.log(typeof string) // string
console.log(typeof dict)   // object
Maxime Laplace

Überprüfen Sie den Datentyp in JS

var x = "Hello World";
typeof x; // "string"
TC5550

JavaScript -Checktyp variabler var

> typeof "foo"
"string"
> typeof true
"boolean"
> typeof 42
"number"
Valentino_Rossi

Überprüfen Sie den Typ einer Variablen in JS

if(typeof variable == 'object'){
  //
}
Lovely Lemur

Ähnliche Antworten wie “Art der Variablen js”

Fragen ähnlich wie “Art der Variablen js”

Weitere verwandte Antworten zu “Art der Variablen js” auf JavaScript

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen