JSFiddle - React, Tailwind, and code Playground

by Rajeesh Menoth

HTML

<img src="https://angularjs.org/img/AngularJS-large.png" height="50px" weight="50px"/>

<h3>Multiplication of two Numbers using AngularJS</h3>

<div ng-app="">
    
    <p>First Number:
        <input type="number" ng-model="num1" />
    </p>
    <p>Second Number:
        <input type="number" ng-model="num2" />
    </p>
    <p>Sum: {{ num1 * num2 }}</p>
</div>