Interpolation: Interpolation is a way angular use to display variables inside your HTML using the curly braces. You can display variables, named. Name <b>name<b> using {{name}} You can bind the data from the class to the template Bind data using double curly bracket {{property_name}} → there is class property name here. Then showing dynamic value. …Continue reading Day 3 – Interpolation
Tag: angularjs
দিন ৩– ইন্টারপোলেশন
ইন্টারপোলেশন (Interpolation): ইউজার টেমপ্লেট (template) এ ডাটা বাইন্ড করতে পারে ক্লাস (Class) থেকে – বাইন্ড ডাটা ডাবল কারলি ব্রাকেট ব্যবহার করে {{property_name}} → ডাবল কারলি ব্রাকেট এর মধ্যে ক্লাস প্রপার্টি নাম থাকবে । তাহলে ডাইনামিক ভ্যালু দেখাবে । 2. ইউজিং সিনটেক্স <h2>{{2+2}}</h2> → output: 4 3. স্ট্রিং কংক্যাটেনশন + প্রপার্টি নাম concatenation: <p>{{“welcome ” +…Continue reading দিন ৩– ইন্টারপোলেশন
Day 1 – Basic Functioning
# what and why ? Framework to build client side application Great for SPAs # Why Modular approach Re-usable code Development quicker and easier (like validation, routing) Unit testable and easily maintainable code Google + Microsoft product (Angular + Typescript) # Angular’s History 2010 – AngularJS 2016 – Angular version 2. Just called Angular 2016…Continue reading Day 1 – Basic Functioning