let x : number = 100;
// if(x == 200) {
// console.log('Condition passed');
// }
if(x === 100) {
console.log('Condition passed');
}
if(x != 100) {
console.log('Condition passed');
}
if(x > 100) {
console.log('Condition passed');
}
// if(x >= 100) {
// console.log('Condition passed');
// }
// if(x < 100) {
// console.log('Condition passed');
// }
// if(x <= 100) {
// console.log('Condition passed');
// }
To embed this project on your website, copy the following code and paste it into your website's HTML: