“jenis variabel js” Kode Jawaban

jenis variabel 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

Periksa tipe data di JS

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

JavaScript Periksa Jenis Variabel Var

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

Periksa jenis variabel di JS

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

Jawaban yang mirip dengan “jenis variabel js”

Pertanyaan yang mirip dengan “jenis variabel js”

Lebih banyak jawaban terkait untuk “jenis variabel js” di JavaScript

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya