Angular 9 Tutorialspoint Code Example


Example 1: Angular 9 tutorial


<div class="calculator">

<input type="text" class="calculator-screen" value="0" disabled />

<div class="calculator-keys">

<button type="button" class="operator" value="+">+</button>
<button type="button" class="operator" value="-">-</button>
<button type="button" class="operator" value="*">×</button>
<button type="button" class="operator" value="/">÷</button>

<button type="button" value="7">7</button>
<button type="button" value="8">8</button>
<button type="button" value="9">9</button>


<button type="button" value="4">4</button>
<button type="button" value="5">5</button>
<button type="button" value="6">6</button>


<button type="button" value="1">1</button>
<button type="button" value="2">2</button>
<button type="button" value="3">3</button>


<button type="button" value="0">0</button>
<button type="button" class="decimal" value=".">.</button>
<button type="button" class="all-clear" value="all-clear">AC</button>

<button type="button" class="equal-sign" value="=">=</button>

</div>
</div>

Example 2: angular 9 tutorial


ng new ng9-app --create-application=false --strict

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable