Quick actions

cmd+k|ctrl+k

Navigation

Languages

boolean

Snippet info

Language

JavaScript

Visibility

public

Author

senoardi01

Created

2020-08-03T14:29:55Z

Updated

2020-08-03T14:30:53Z

let x = true;
let y = false;
 
console.log((typeof x));
console.log((typeof y));

const a = 10;
const b = 12;
 
let isGreater = a > b;
let isLess = a < b;
 
console.log(isGreater);
console.log(isLess);
INFO