Mengedit Kode:
Lihat Hasil »
Cobalah sendiri - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
script
src
="/lib/angular-1.4.8.min.js"
>
<
/script
>
<
body
>
<
div
ng-app
=""
ng-init
="quantity=1;cost=5"
>
<
p
>
Total in dollar:
{{ quantity * cost }}
<
/p
>
<
/div
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <script src="/lib/angular-1.4.8.min.js"></script> <body> <div ng-app="" ng-init="quantity=1;cost=5"> <p>Total in dollar: {{ quantity * cost }}</p> </div> </body> </html>