Boolean in JavaScript
What are Booleans?
Data Type: Booleans are a basic data type in JavaScript.
Two values: Values can be only true or false.
'true' is a string, not a boolean.
for eg.
console.log(5<9);
The output would be true because we know that 5 is less than ...
aditidhabe.hashnode.dev2 min read