Tejas Rana
  • _home
  • _blogs
  • _services
  • _contact-me
Tejas Rana
About.Blogs.Services.Contact.
  • LinkedIn
  • Instagram
  • Facebook

© 2025 — CopyrightAll Rights reserved

Contact Us
hello@tejasrana.com+91 9530107998
← Back to all blogs

Basic AngularJS Example, Syntax, calculation

November 21, 2015Updated: May 23, 2024

AngularJS is a JavaScript framework. It can be added to an HTML page with a <script> tag. AngularJS extends HTML attributes with Directives, and binds data to HTML with Expressions In this basic Tutorial you will learn how to add AngularJS and how to use it. But before that you must have basic knowledge of: […]

AngularJS is a JavaScript framework. It can be added to an HTML page with a

 
Simple Calculation:

    

Sum: {{ 1 + 2 }}

Multiplication: {{ 2 * 10 }}

Division: {{ 10 / 2 }}

Subtract: {{ 10 - 2 }}

 
Dynamic text binding:

    

Name:

Hi {{myname}}

 
AngularJS filter example using JSON.

← Back to all blogs