Answers for "html if else ? :"

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
0

if else statement

if ((age >= 14) && (age < 19)) {        // logical condition
status = "Eligible.";               // executed if condition is true
} else {                                // else block is optional
status = "Not eligible.";           // executed if condition is false
}
Posted by: Guest on April-07-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language