Quick actions

cmd+k|ctrl+k

Navigation

Languages

Operator Perbandingan

Snippet info

Language

JavaScript

Visibility

public

Author

saiya-man

Created

2019-08-22T03:45:05Z

Updated

2019-08-22T03:45:05Z

// let x = 29;
// let y = 19;

// console.log( typeof x == y );
// console.log( typeof x < y );
// console.log( typeof x > y );
// console.log( typeof x <= y );
// console.log( typeof x >= y );
// console.log( typeof x != y );

let x = '19';
let y = 19;

// console.log( typeOf x === y ); // menampilkan pesan eror karena '===' digunakan untuk membandingkan tipe data
console.log( typeof x == y );
INFO