Answers for "if else condition in html"

4

IF else statement

var age=20;
if (age < 18) {
	console.log("underage");
} else {
	console.log("let em in!");
}
Posted by: Guest on March-24-2021
7

html if else statement example

<div *ngIf="!show">
    <div>show is false</div>
</div>
<div *ngIf="show">
  <div>show is ture</div>
</div>
Posted by: Guest on February-16-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language