Dalam tutorial ini, Anda akan belajar tentang operator tipe JavaScript dengan bantuan contoh.
The typeof
Operator mengembalikan jenis variabel dan nilai-nilai. Sebagai contoh,
const a = 9; console.log(typeof a); // number console.log(typeof '9'); // string console.log(typeof false); // boolean
Sintaks tipe Operator
Sintaks typeof
operator adalah:
typeof operand
Di sini, operan adalah nama variabel atau nilai.
Jenis Jenis
Jenis yang mungkin tersedia di JavaScript yang typeof
dikembalikan operator adalah:
Jenis | jenis Hasil |
---|---|
String | "tali" |
Number | "jumlah" |
BigInt | "bigint" |
Boolean | "boolean" |
Object | "obyek" |
Symbol | "simbol" |
undefined | "tidak terdefinisi" |
null | "obyek" |
fungsi | "fungsi" |
Contoh 1: typeof untuk String
const str1 = 'Peter'; console.log(typeof str1); // string const str2 = '3'; console.log(typeof str2); // string const str3 = 'true'; console.log(typeof str3); // string
Contoh 2: jenis Angka
const number1 = 3; console.log(typeof number1); // number const number2 = 3.433; console.log(typeof number2); // number const number3 = 3e5 console.log(typeof number3); // number const number4 = 3/0; console.log(typeof number4); // number
Contoh 3: typeof untuk BigInt
const bigInt1 = 900719925124740998n; console.log(typeof bigInt1); // bigint const bigInt2 = 1n; console.log(typeof bigInt2); // bigint
Contoh 4: typeof untuk Boolean
const boolean1 = true; console.log(typeof boolean1); // boolean const boolean2 = false; console.log(typeof boolean2); // boolean
Contoh 5: typeof untuk Undefined
let variableName1; console.log(typeof variableName1); // undefined let variableName2 = undefined; console.log(typeof variableName2); // undefined
Contoh 6: typeof untuk null
const name = null; console.log(typeof name); // object console.log(typeof null); // object
Contoh 7: typeof untuk Symbol
const symbol1 = Symbol(); console.log(typeof symbol1); // symbol const symbol2 = Symbol('hello'); console.log(typeof symbol2); // symbol
Contoh 8: typeof untuk Object
let obj1 = (); console.log(typeof obj1); // object let obj2 = new String(); console.log(typeof obj2); // object let obj3 = (1, 3, 5, 8); console.log(typeof obj3); // object
Contoh 9: typeof untuk Function
let func = function () (); console.log(typeof func); // function // constructor function console.log(typeof String); // function console.log(typeof Number); // function console.log(typeof Boolean); // function
Penggunaan tipe Operator
- The
typeof
operator dapat digunakan untuk memeriksa jenis variabel pada titik tertentu. Sebagai contoh,
let count = 4; console.log(typeof count); count = true; console.log(typeof count);
- Anda dapat melakukan tindakan berbeda untuk jenis data yang berbeda. Sebagai contoh,
let count = 4; if(typeof count === 'number') ( // perform some action ) else if (typeof count = 'boolean') ( // perform another action )