JavaScript Conditionals & Logical Operators
What are conditionals?
A conditional regulates behavior and decides whether or not certain bits of code can be executed.
Types of conditionals
Examples
if statements
if (12 < 5) {
console.log(true);
}
else statements
if (12 < 5) {
console.log(true)...
samstech.hashnode.dev2 min read