Attribute vs property Example: <input type=”text” value=”Biswas”> Attribute and property not the same Attribute defined by HTML Properties – Defined by DOM (Document Object Model) Attributes initialized by DOM properties and they are done. Attributes value cannot change once they are initialized. Property values however can change. HTML attribute value specifice the initialize value. And…Continue reading Day 4 – Property Binding
নতুনদের জন্য সিএসএস: সিএসএস কী এবং ওয়েব ডেভেলপমেন্টে এটি কীভাবে ব্যবহার করতে হয়?
এইচটিএমএল( HTML), সিএসএস( CSS ) এবং জাভাস্ক্রিপ্ট( JavaScript )… ওয়েব ফ্রন্ট-এন্ড ডেভলপমেন্টের 3 টি প্রধান ভাষা।এই আর্টিকেল এ, আমি সিএসএসের বেসিকগুলি কভার করব। সুতরাং আপনার যদি সিএসএস সম্পর্কে কোনও ধারণা না থাকে বা কীভাবে এটি ব্যবহার করতে হয় তা না জানেন তবে এই আর্টিকেল আপনার জন্য সিএসএস কী, কীভাবে সিএসএস লিখতে হয় এবং কীভাবে সেগুলি…Continue reading নতুনদের জন্য সিএসএস: সিএসএস কী এবং ওয়েব ডেভেলপমেন্টে এটি কীভাবে ব্যবহার করতে হয়?
Day 3 – Interpolation
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
দিন ৩– ইন্টারপোলেশন
ইন্টারপোলেশন (Interpolation): ইউজার টেমপ্লেট (template) এ ডাটা বাইন্ড করতে পারে ক্লাস (Class) থেকে – বাইন্ড ডাটা ডাবল কারলি ব্রাকেট ব্যবহার করে {{property_name}} → ডাবল কারলি ব্রাকেট এর মধ্যে ক্লাস প্রপার্টি নাম থাকবে । তাহলে ডাইনামিক ভ্যালু দেখাবে । 2. ইউজিং সিনটেক্স <h2>{{2+2}}</h2> → output: 4 3. স্ট্রিং কংক্যাটেনশন + প্রপার্টি নাম concatenation: <p>{{“welcome ” +…Continue reading দিন ৩– ইন্টারপোলেশন
দিন ২ – কম্পোনেন্ট ব্যাসিক
কম্পোনেন্টে আছে : #কম্পোনেন্ট এর ৩ টা পার্ট । টেমপ্লেট (template), ক্লাস (Class), মেটাডাটা (Metadata) টেমপ্লেট (Template) – রিপ্রেসেন্ট ভিউ – HTML ব্যবহার করে । ক্লাস (Class) – কন্ট্রোল লজিক অ্যান্ড ভিউ মেটাডাটা (MetaData) – এটা হচ্ছে তথ্য (Information ) আঙ্গুলার এর সিদ্ধান্ত নেওয়ার ক্ষেত্রে কাজ করে Decorator:এটা Typescript এর একটা ফিচার । Decorator হচ্ছে…Continue reading দিন ২ – কম্পোনেন্ট ব্যাসিক
Day 2 – Component Basic
Component Have: Template – represents the view (using HTML) Class – Code, Typescript, Business Logic, Data & Method (control the logic & view) MetaData: Information (Angular needs to decide for particular class angular component) Decorator: Decorator Metadata feature in Typescript. Decorator just a function provide information about the class attached to it. Component use component…Continue reading Day 2 – Component Basic
দিন-১ – ব্যাসিক ধারনা
দিন-১ – ব্যাসিক ধারনা পূর্বশর্ত – Angular শেখার আগে কিছু বিষয় জানা দরকার HTML, CSS, JS Typescript এর উপর স্বল্প ধারনা ডেভেলপমেন্ট এনভায়রনমেন্ট: এই বিষয় গুলো কিছু ধারনা থাকলে চলবে এই যেমন ধরেন এনপিএম(NPM) কি ? Node NPM Angular CLI Text Editor like VS Editor নতুন প্রোজেক্ট করার শর্টকাটঃ ওপেন উইন্ডোজ কমান্ড প্রম্পট ইন্টারফেস ।…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
Hello world!
Welcome to WordPress. This is your first post. Edit or delete it, then start writing!