If then else branches
<ul>
<strong id="==">
<p id="foo"></p>
<p id="10"></p>
</strong>
<if>
<p>Some code here</p>
</if>
<else>
<p>Some other code here</p>
</else>
</ul>if(foo == 10){
'Some code here';
}
else{
'Some other code here';
}Last updated